-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 806 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"repository": "git@github.com:Brianzchen/extension-npmjs-flow-typed.git",
"author": "bzchen93@gmail.com",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rm -rf dist",
"start": "yarn clean && mkdir dist && cp -a public/ dist/ && webpack --config webpack.config.js --watch",
"build": "yarn clean && webpack --config webpack.config.js && cp -a public/ dist/ && zip -r dist.zip ./dist*"
},
"dependencies": {
"@octokit/rest": "^18.12.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/preset-flow": "^7.16.7",
"babel-loader": "^8.2.3",
"flow-bin": "^0.184.0",
"svg-url-loader": "^7.1.1",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
}
}