forked from piyuesh23/node-express-ts-starterkit
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 2 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
{
"name": "node-express-ts",
"version": "1.0.0",
"main": "./build/index.js",
"description": "Node-Express-TS Chat Application - Server",
"author": "Vertika Jain",
"scripts": {
"build": "tsc",
"server": "tsc && npm run build && nodemon ./build/index.js",
"start": "node ./build/src/index.js",
"ts:watch": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1",
"seed": "node ./scripts/seed.ts"
},
"files": [
"src"
],
"dependencies": {
"@types/uuid": "^8.3.0",
"bcrypt": "^3.0.4",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "1.18.2",
"chalk": "^2.4.1",
"compression": "1.7.1",
"cookie-parser": "1.4.3",
"cors": "2.8.4",
"cron": "^1.3.0",
"dotenv": "^4.0.0",
"ejs": "^2.6.1",
"express": "4.16.2",
"express-custom-responses": "^1.0.0",
"express-winston": "^2.5.1",
"helmet": "3.9.0",
"http-errors": "^1.6.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"moment": "^2.29.1",
"mongo-seeding": "^3.6.0",
"mongoose": "^5.12.2",
"multer": "^1.4.1",
"multer-s3": "^2.9.0",
"socket.io": "^3.0.1",
"socket.io-client": "^3.0.1",
"uuid": "^8.3.1",
"websocket": "^1.0.32"
},
"devDependencies": {
"@types/body-parser": "1.16.8",
"@types/compression": "0.0.36",
"@types/cookie-parser": "1.4.1",
"@types/cors": "2.8.3",
"@types/cron": "^1.3.0",
"@types/debug": "0.0.31",
"@types/ejs": "^2.6.1",
"@types/express": "4.11.0",
"@types/helmet": "0.0.42",
"@types/node": "^8.10.38",
"@types/socket.io": "^2.1.11",
"nodemon": "^1.19.4",
"source-map-loader": "^0.2.4",
"ts-loader": "^5.3.1",
"ts-node": "^6.2.0",
"tslint": "5.8.0",
"tslint-config-airbnb": "^5.8.0",
"typescript": "^4.2.3"
}
}