-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.9 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
64
65
66
67
68
69
70
71
72
{
"name": "shopping-mall",
"version": "1.0.0",
"description": "shopping-mall backend",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run dev",
"test": "npm run build && npm run devTest",
"build": "tsc -p .",
"dev": "node dist/server.js",
"devTest": "node dist/testServer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GreatLaboratory/shopping-mall.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.627.0",
"axios": "^0.19.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-validator": "^6.3.1",
"helmet": "^3.21.2",
"hpp": "^0.2.2",
"jsonwebtoken": "^8.5.1",
"memory-cache": "^0.2.0",
"mongoose": "^5.8.4",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local-mongoose": "^6.0.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/compression": "^1.0.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/errorhandler": "0.0.32",
"@types/eslint": "^6.1.3",
"@types/express": "^4.17.2",
"@types/helmet": "0.0.45",
"@types/hpp": "^0.2.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/memory-cache": "^0.2.1",
"@types/mongoose": "^5.5.38",
"@types/morgan": "^1.7.37",
"@types/multer": "^1.3.10",
"@types/multer-s3": "^2.7.7",
"@types/node": "^13.1.4",
"@types/passport": "^1.0.2",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local-mongoose": "^4.0.13",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.7.2",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"bugs": {
"url": "https://github.com/GreatLaboratory/shopping-mall/issues"
},
"homepage": "https://github.com/GreatLaboratory/shopping-mall"
}