-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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": "rest-api",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "npx ts-node src/bin/www.ts",
"watch": "npx nodemon"
},
"dependencies": {
"aes-js": "^3.1.2",
"axios": "^1.2.1",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"crypto-js": "^4.1.1",
"dotenv": "^6.0.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"fast-csv": "^4.3.6",
"fs-extra": "^10.1.0",
"http-status-codes": "^1.3.0",
"jsonschema": "^1.4.1",
"jsonwebtoken": "^8.3.0",
"minio": "^7.0.32",
"moment": "^2.22.2",
"mongoose": "^5.2.5",
"morgan": "^1.9.0",
"multer": "^1.4.5-lts.1",
"path": "^0.12.7",
"serve-favicon": "^2.5.0",
"uuid": "^9.0.0",
"zlib": "^1.0.5"
},
"devDependencies": {
"@types/body-parser": "1.17.0",
"@types/cookie-parser": "^1.4.1",
"@types/ejs": "^2.6.0",
"@types/express": "^4.16.0",
"@types/jsonwebtoken": "^7.2.6",
"@types/mongoose": "^5.2.2",
"@types/morgan": "^1.7.35",
"@types/node": "^9.6.4",
"@types/serve-favicon": "^2.2.30",
"nodemon": "^1.18.1",
"ts-node": "^7.0.0",
"typescript": "^2.9.2"
}
}