-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 866 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
28
29
30
31
32
33
34
{
"name": "game",
"version": "0.0.1",
"description": "",
"main": "start.js",
"dependencies": {
"express": "^4.16.3",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1",
"pug": "^2.0.3"
},
"devDependencies": {
"@types/pixi.js": "^4.7.3",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-pug": "^4.0.1",
"gulp-sass": "^4.0.1",
"gulp-tsc": "^1.3.2",
"gulp-tslint": "^8.1.3",
"gulp-uglify": "^3.0.0",
"tsc": "^1.20150623.0",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp view && gulp ts && gulp sass && gulp resource",
"clean": "gulp clean",
"cbuild": "echo \"Clean & Build\" && npm run clean && npm run build",
"start": "gulp"
},
"author": "István Schoffhauzer",
"license": "MIT"
}