-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "open-conquest-world-server",
"version": "0.1.0",
"description": "",
"main": "server.js",
"scripts": {
"make": "cd schemas; node compile.js; cd ..; tsc",
"watch": "tsc --watch",
"test": "npm run u-tests; npm run i-tests",
"u-tests": "mocha --recursive --exit dist/test/unit/",
"i-tests": "NODE_ENV=test mocha --recursive --timeout 5000 --exit dist/test/integration",
"i-tests-travis": "NODE_ENV=travis ./node_modules/.bin/nyc mocha --recursive --exit dist/test/integration",
"start-test": "NODE_ENV=test node dist/src/WorldServer.js",
"start": "NODE_ENV=test node dist/src/shared/infra/ws/WorldServer.js"
},
"keywords": [],
"author": "Zachary Wild",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"json-schema-to-typescript": "^8.0.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.0.0",
"nyc": "^15.0.0",
"sequelize": "^5.21.2",
"typescript": "^3.7.5",
"websocket": "^1.0.30",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.29",
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"mocha": "^6.2.2"
}
}