-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.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
{
"name": "gridlock",
"version": "0.0.1",
"description": "An agent based traffic simulator web application",
"main": "app.js",
"scripts": {
"start": "ts-node server/app.ts",
"bundle": "webpack --config client/webpack.config.js",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"test-coverage": "jest --coverage",
"dev": "npm run-script bundle && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcardy/gridlock.git"
},
"author": "Michael Cardy",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcardy/gridlock/issues"
},
"homepage": "https://github.com/mcardy/gridlock#readme",
"dependencies": {
"ajv": "^6.11.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"brace": "^0.11.1",
"colyseus": "^0.11.25",
"colyseus.js": "^0.11.7",
"express": "^4.17.1",
"jquery": "^3.4.1",
"jsoneditor": "^8.4.1",
"jsoneditor-react": "^3.0.0",
"pixi.js": "^5.2.0",
"popper.js": "^1.16.1",
"random-js": "^2.1.0",
"react": "^16.12.0",
"react-bootstrap": "^1.0.0-beta.16",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@types/bootstrap": "^4.3.1",
"@types/express": "^4.17.2",
"@types/jquery": "^3.3.31",
"@types/jsoneditor": "^5.28.2",
"@types/mocha": "^7.0.1",
"@types/popper.js": "^1.11.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"css-loader": "^3.4.2",
"file-loader": "^5.0.2",
"mocha": "^7.0.1",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"ts-jest": "^25.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"babel": {
"presets": [
"es2015"
]
}
}