-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.51 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
46
47
{
"name": "Cocos2dTS",
"version": "1.0.0",
"description": "",
"main": "./tsdist/main.js",
"scripts": {
"dev": "node_modules/.bin/webpack --mode development && node ./BuildCocosSrcConfig.js && npm run plist_build",
"deploy": "npm run pro && npm run plist_build && cocos compile -p web -m release && npm run copysrc",
"watch": "concurrently \"npm run webpack_watch\" \"npm run node_watch\"",
"pro": "node_modules/.bin/webpack --mode production && node ./BuildCocosSrcConfig.js",
"node_watch": "node ./BuildCocosSrcConfig.js --watch true",
"webpack_watch": "node_modules/.bin/webpack --watch --mode development --env.build_type=watch",
"lint": "node_modules/.bin/tslint -c tslint.json tssrc/**/*.ts{,x}",
"copysrc": "node ./CopyTS2JSSrc.js",
"plist_build": "node ./PlistBuild.js"
},
"pre-commit": [
"lint"
],
"keywords": [
"typescript",
"cocos2dxjs"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bluebird": "^3.5.20",
"@types/core-js": "^0.9.36",
"@types/lodash": "^4.14.106",
"babel-polyfill": "^6.26.0",
"cocos-pkgjson": "^1.0.4",
"concurrently": "^3.5.1",
"html-webpack-plugin": "^3.1.0",
"lodash": "^4.17.5",
"md5": "^2.2.1",
"on-build-webpack": "^0.1.0",
"pre-commit": "^1.2.2",
"punycode": "^2.1.0",
"ts-loader": "^4.0.0",
"tslint": "^5.9.1",
"typescript": "^2.8.1",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"yargs": "^11.0.0"
}
}