-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.49 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "cocos2d-js-webpack",
"version": "0.0.1",
"description": "Develop Cocos2d-js with Webpack.",
"repository": "https://github.com/shaching/cocos2d-js-webpack",
"author": "Johnny Chu <[email protected]>",
"license": "MIT License",
"scripts": {
"dev": "webpack --mode=development --config webpack.dev.js && cocos run -p web",
"prod": "webpack --mode=production --config webpack.prod.js && cocos compile -p web -m release -o ./publish",
"lint": "eslint --ext .js src && prettier --check src/**/*.js",
"server": "node ./server"
},
"dependencies": {
"@babel/polyfill": "^7.4.3",
"koa": "^2.7.0",
"koa-compress": "^3.0.0",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"file-loader": "^3.0.1",
"filemanager-webpack-plugin": "^2.0.5",
"prettier": "^1.16.4",
"terser-webpack-plugin": "^1.2.3",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.0",
"webpack-merge": "^4.2.1",
"webpack-mode": "^1.0.1"
}
}