-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "node_server",
"version": "1.0.0",
"scripts": {
"build": "node ./util/build.js",
"lint": "tslint --project \"tsconfig.json\"",
"start": "cross-env ENV_FILE=production node -r ./env -r module-alias/register ./dist/start.js",
"start-dev": "nodemon --inspect --config \"./util/nodemon.json\"",
"test": "nodemon --config \"./util/nodemon.test.json\""
},
"_moduleAliases": {
"@daos": "dist/daos",
"@entities": "dist/entities",
"@shared": "dist/shared",
"@server": "dist/Server"
},
"dependencies": {
"cookie-parser": "^1.4.4",
"cross-env": "^6.0.3",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"http-status-codes": "^1.3.2",
"module-alias": "^2.2.2",
"morgan": "^1.9.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/find": "^0.2.1",
"@types/jasmine": "^3.4.2",
"@types/jsonfile": "^5.0.0",
"@types/morgan": "^1.7.37",
"@types/node": "^12.7.11",
"@types/supertest": "^2.0.8",
"find": "^0.3.0",
"fs-extra": "^8.1.0",
"jasmine": "^3.5.0",
"jsonfile": "^5.0.0",
"nodemon": "^1.19.3",
"supertest": "^4.0.2",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
}
}