-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.96 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "civisurbs",
"version": "0.0.0",
"description": "A collaborative sim-city-like game",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jaenyph/civisurbs.git"
},
"keywords": [
"civisurbs",
"civis",
"urbs",
"sim",
"city",
"simcity",
"game",
"simulation"
],
"author": "jaenyph",
"license": "ISC",
"bugs": {
"url": "https://github.com/jaenyph/civisurbs/issues"
},
"homepage": "https://github.com/jaenyph/civisurbs#readme",
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"dependencies": {
"@angular/common": "~2.4.0",
"@angular/compiler": "~2.4.0",
"@angular/core": "~2.4.0",
"@angular/forms": "~2.4.0",
"@angular/http": "~2.4.0",
"@angular/platform-browser": "~2.4.0",
"@angular/platform-browser-dynamic": "~2.4.0",
"@angular/router": "~3.4.0",
"angular-in-memory-web-api": "~0.2.4",
"core-js": "~2.4.0",
"rxjs": "~5.0.0",
"systemjs": "~0.19.0",
"zone.js": "~0.7.0",
"phaser" : "~2.6.0",
"font-awesome" : "~4.7.0",
"bulma" : "~0.3.0"
},
"devDependencies": {
"@types/node": "^7.0.0",
"concurrently": "~3.1.0",
"del": "~2.2.0",
"gulp": "~3.9.0",
"gulp-rename": "~1.2.0",
"gulp-uglify": "~2.0.0",
"http-server": "~0.9.0",
"typescript": "~2.1.0",
"tslint": "~3.15.0"
},
"scripts": {
"start": "npm run build-client && concurrently \"npm run tsw-client\" \"npm run run-client\" ",
"build-client": "concurrently \"npm run import-client-libs\" \"npm run import-client-contents\" && tsc --project client",
"import-client-libs" : "gulp import-client-libs",
"import-client-contents" : "gulp import-client-contents",
"tsw-client": "tsc --project client -w",
"run-client": "http-server client",
"lint-client": "tslint ./client/scripts/app/**/*.ts -t verbose --config ./client/tslint.json",
"test": "echo \"Error: no test specified\" && exit 1"
}
}