-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "reduxtagram-server",
"version": "0.0.0",
"private": true,
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"scripts": {
"start-dev": "npm-run-all clean --parallel watch:server --print-label",
"start": "npm run build && node build/server.js",
"build": "rimraf ./build && tsc",
"clean": "rimraf ./build/",
"tsc": "tsc",
"watch:build": "tsc --watch",
"watch:server": "nodemon --watch 'src/**/*.ts' --exec ./node_modules/.bin/ts-node src/server.ts",
"postinstall": "./node_modules/.bin/tsc || echo done"
},
"dependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.1",
"@types/express-session": "^1.15.14",
"@types/mime": "^2.0.1",
"@types/mongodb": "^3.3.1",
"@types/mongoose": "^5.5.17",
"@types/mongoose-delete": "^0.5.0",
"@types/multer": "^1.3.9",
"@types/multer-s3": "^2.7.7",
"@types/node": "^12.7.2",
"aws-sdk": "^2.529.0",
"bcrypt": "^3.0.6",
"connect-redis": "^3.4.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.1.0",
"express": "~4.16.1",
"express-session": "^1.16.2",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"lodash": "^4.17.15",
"mongoose": "^5.6.7",
"mongoose-delete": "^0.5.1",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemon": "^1.19.3",
"npm-run-all": "^4.1.5",
"redis": "^2.8.0",
"rimraf": "^3.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.3",
"typings": "^2.1.1",
"url": "^0.11.0",
"validator": "^11.1.0"
}
}