-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "dark-nova",
"version": "0.0.7",
"description": "OGame Private Server in Node.js",
"main": "index.js",
"scripts": {
"build": "tsc -p .",
"start": "node index",
"dev": "tsc --project ./tsconfig.json && node index --env development",
"watch": "concurrently \"tsc --watch\" \"nodemon\"",
"production": "tsc -p . && node index --env production",
"test": "echo \"Error: no test specified\" && exit 1",
"apidoc": "apidoc -i src/ -o apidoc/"
},
"author": "ScuroGuardiano",
"license": "MIT",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.1",
"@types/client-sessions": "^0.8.0",
"@types/colors": "^1.2.1",
"@types/convict": "^4.2.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/ejs": "^2.7.0",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.149",
"@types/morgan": "^1.7.37",
"@types/node": "^13.1.6",
"@types/sequelize": "^4.28.8",
"@types/winston": "^2.4.4",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"client-sessions": "^0.8.0",
"colors": "^1.4.0",
"convict": "^4.4.1",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"ejs": "^2.7.4",
"express": "^4.17.1",
"lodash": "^4.17.15",
"module-alias": "^2.2.2",
"morgan": "^1.9.1",
"reflect-metadata": "^0.1.13",
"server-sessions": "^1.1.1",
"sqlite3": "^4.1.1",
"tslint": "^5.20.1",
"typeorm": "^0.2.22",
"winston": "^3.2.1"
},
"devDependencies": {
"concurrently": "^4.1.2",
"typescript": "^3.7.4"
},
"_moduleAliases": {
"@core": "build/game/core",
"@db": "build/db",
"@logger": "build/logger",
"@nova-view": "build/game/view",
"@config": "build/config"
}
}