-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.81 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
63
{
"name": "starter",
"author": "Cameron Cabo <[email protected]>",
"description": "Starter web server built on Express",
"license": "MIT",
"version": "0.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 --config \"./util/nodemon.json\"",
"test": "nodemon --config \"./util/nodemon.test.json\""
},
"_moduleAliases": {
"@daos": "dist/daos",
"@entities": "dist/entities",
"@shared": "dist/shared",
"@server": "dist/Server",
"@root": "."
},
"dependencies": {
"bcrypt": "^3.0.6",
"cookie-parser": "^1.4.4",
"cross-env": "^6.0.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"http-status-codes": "^1.3.2",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.1",
"mongoose": "^5.7.1",
"morgan": "^1.9.1",
"uuid": "^3.3.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/find": "^0.2.1",
"@types/http-status-codes": "^1.2.0",
"@types/jasmine": "^3.4.0",
"@types/jsonfile": "^5.0.0",
"@types/jsonwebtoken": "^8.3.4",
"@types/mongodb": "^3.3.3",
"@types/mongoose": "^5.5.18",
"@types/morgan": "^1.7.37",
"@types/node": "^12.7.8",
"@types/supertest": "^2.0.8",
"@types/uuid": "^3.4.5",
"find": "^0.3.0",
"fs-extra": "^8.1.0",
"jasmine": "^3.5.0",
"jsonfile": "^5.0.0",
"nodemon": "^1.19.2",
"supertest": "^4.0.2",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.0",
"tslint-lines-between-class-members": "^1.3.6",
"typescript": "^3.6.3"
}
}