forked from chrisesharp/roguelike
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1018 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
35
36
37
38
39
40
41
42
{
"name": "rogue",
"type": "module",
"version": "1.0.0",
"description": "A NodeJS Rogue client/server",
"config": {
"port": "3000",
"host": "localhost",
"maps": "./test/test-cave",
"file": "./src/server/config/defaults.json"
},
"main": "index.js",
"scripts": {
"start": "bash ./src/start.sh",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"author": "chrisesharp",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"express": "^4.17.1",
"npm": "^6.14.7",
"parcel-bundler": "^1.12.4",
"react": "^16.13.1",
"rot-js": "^2.1.3",
"socket.io": "^3.1.0",
"socket.io-client": "^3.0.1",
"underscore": "^1.12.1"
},
"devDependencies": {
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.10.4",
"@pact-foundation/pact": "^9.11.0",
"babel-jest": "^26.0.1",
"dot-prop": "^5.3.0",
"jest": "^26.0.1",
"jest-pact": "^0.6.0",
"node-forge": ">=0.10.0"
}
}