-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 855 Bytes
/
package.json
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
26
27
{
"name": "redux-api-worker",
"version": "1.0.0",
"main": "./dist/index.js",
"repository": "https://github.com/chenyang-biu/redux-api.git",
"author": "chenyang <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && babel-node ./node_modules/.bin/webpack './webpack.config.js'",
"lint": "eslint --max-warnings 0 -c ./.eslintrc.yml src/**"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.11.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15"
}
}