-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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
{
"name": "task-todo",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "yarn tsc",
"tsc": "tsc --project tsconfig.compile.json",
"tsc:w": "tsc --project tsconfig.json -w",
"start": "nodemon --watch \"src/**/*.ts\" --ignore \"node_modules/**/*\" --exec ts-node src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js"
},
"dependencies": {
"@tsed/ajv": "5.61.1",
"@tsed/common": "5.61.1",
"@tsed/core": "5.61.1",
"@tsed/di": "5.61.1",
"@tsed/exceptions": "5.61.1",
"@tsed/mongoose": "5.61.1",
"@tsed/passport": "5.61.1",
"@tsed/platform-express": "5.61.1",
"@types/bcryptjs": "^2.4.2",
"@types/express-session": "^1.17.0",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"ajv": "6.12.3",
"bcryptjs": "^2.4.3",
"body-parser": "1.19.0",
"compression": "1.7.4",
"concurrently": "5.2.0",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"cross-env": "7.0.2",
"express": "4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"method-override": "3.0.0",
"mongoose": "5.9.25",
"passport": "0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@tsed/cli-plugin-mongoose": "1.17.0",
"@tsed/cli-plugin-passport": "1.17.0",
"@tsed/testing-mongoose": "5.61.1",
"@types/compression": "1.7.0",
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.6",
"@types/express": "4.17.7",
"@types/method-override": "0.0.31",
"@types/mongoose": "5.7.32",
"@types/node": "14.0.24",
"@types/passport": "1.0.4",
"concurrently": "5.2.0",
"nodemon": "2.0.4",
"ts-node": "8.10.2",
"typescript": "3.9.7"
}
}