-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
32 lines (32 loc) · 1.08 KB
/
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
28
29
30
31
32
{
"name": "luobo",
"version": "1.0.0",
"main": "main.js",
"repository": "[email protected]:zhuowenli/luobo.git",
"author": "卓文理 <[email protected]>",
"license": "MIT",
"scripts": {
"web": "cocos run -p web",
"webpack": "rm -rf src && webpack --progress --colors --watch --config build/webpack.config.js",
"server": "webpack-dev-server --output-public-path=/src --config build/webpack.config.js",
"dev": "npm run webpack & npm run server",
"build:web": "cocos compile -p web -m release",
"gh-pages": "npm run build:web && node build/gh-pages.js"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-1": "^6.22.0",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"gh-pages": "^0.12.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
}
}