-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 869 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
{
"name": "lillian_code",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "tsc --watch",
"tsc": "tsc",
"start": "tsc;node dist/server/index.js",
"test": "MODE=test mocha dist/game_core/test"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/mongoose": "^5.3.27",
"body-parser": "^1.19.0",
"express": "^4.16.4",
"express-session": "^1.16.1",
"mongoose": "^5.5.5"
},
"devDependencies": {
"@types/assert": "^1.4.2",
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.12",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.4",
"@typescript-eslint/eslint-plugin": "^1.5.0",
"@typescript-eslint/parser": "^1.5.0",
"eslint": "^5.15.3",
"mocha": "^6.1.4",
"typescript": "^3.3.3333"
}
}