forked from leimao/nes-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.79 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "nes-web",
"version": "0.1.0",
"description": "Multiplayer Online Classic NES Games on Web Browser",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/nfam/nes-web.git"
},
"main": "dist/server/index.js",
"dependencies": {
"sinjection": "^0.1.1",
"xson.js": "^0.1.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-ws": "^3.0.0",
"moment": "^2.19.1",
"moment-timezone": "^0.5.14",
"nconf": "^0.8.5",
"pako": "^1.0.6",
"uuid": "^3.1.0",
"winston": "^2.4.0",
"ws": "^3.3.2"
},
"devDependencies": {
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/router": "^5.0.0",
"@types/body-parser": "^1.16.5",
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "^7.1.0",
"@types/express": "^4.0.37",
"@types/gamepad": "0.0.28",
"@types/mocha": "^2.2.43",
"@types/moment-timezone": "^0.5.1",
"@types/mysql": "0.0.34",
"@types/nconf": "0.0.34",
"@types/node": "^8.0.46",
"@types/pako": "^1.0.0",
"@types/simple-peer": "^6.1.4",
"@types/uuid": "^3.4.3",
"@types/winston": "^2.3.6",
"@types/ws": "^3.2.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-changed": "^3.1.1",
"gulp-clean-css": "^3.9.0",
"gulp-concat": "^2.6.1",
"gulp-download-stream": "0.0.19",
"gulp-file": "^0.3.0",
"gulp-if": "^2.0.2",
"gulp-inline-ng2-template": "^4.0.0",
"gulp-intercept": "^0.1.0",
"gulp-manifest": "^0.1.1",
"gulp-real-favicon": "^0.2.2",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-sass": "^3.1.0",
"gulp-svgmin": "^1.2.4",
"gulp-typescript": "^3.2.2",
"gulp-uglify": "^3.0.0",
"gulp-wrapper": "^1.0.0",
"html-minifier": "^3.5.6",
"rxjs": "^5.5.2 ",
"ts-node": "^3.3.0",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^5.1.0",
"tsnes": "0.0.2",
"typescript": "^2.5.3",
"zone.js": "^0.8.18"
},
"scripts": {
"tslint": "npm run tslint-server && npm run tslint-client",
"tslint-server": "node_modules/.bin/tslint -c tslint.json --project src/server",
"tslint-client": "node_modules/.bin/tslint -c tslint.json --project src/client",
"build": "node_modules/.bin/gulp",
"serve": "node dist/server"
},
"nyc": {
"include": [
"src/server/**/*.ts"
],
"exclude": [
"src/client/*",
"dist/*",
"test/*"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"html"
],
"all": true
}
}