-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.92 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
48
49
50
51
52
53
54
55
{
"name": "sky-block-clicker",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "budo src/Main.ts:bundle.js --live -- -d -e src/Main.ts -p [tsify --noImplicitAny --project tsconfig.json ] -t [babelify --comments false --presets es2015]",
"prebuild": "mkdirp build",
"build": "npm run build:js && npm run build:css && npm run build:html && npm run copy:all",
"build:js": "browserify src/Main.ts -p [tsify --noImplicitAny --project tsconfig.json ] | uglifyjs -cm > build/bundle.min.js",
"build:css": "cleancss css/main.css -o build/main.min.css",
"build:html": "htmlprocessor game.html -o index.html",
"copy:all": "npm run copy:assets && npm run copy:phaser",
"copy:assets": "ncp assets build/assets/",
"copy:phaser": "ncp node_modules/phaser-ce/build/phaser.min.js build/phaser.min.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^11.11.0",
"lodash": "^4.17.11",
"phaser-ce": "^2.12.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.8.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.3.3",
"@types/lodash": "^4.14.122",
"@types/weighted": "0.0.5",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/eslint-plugin-tslint": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^14.5.0",
"budo": "^10.0.4",
"clean-css-cli": "^4.2.1",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"htmlprocessor": "^0.2.6",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"tsify": "^4.0.1",
"tslint": "^5.13.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^2.9.2",
"uglify-es": "^3.3.9",
"uglify-js": "^3.4.9",
"weighted": "^0.3.0"
}
}