-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "route-provider-system",
"version": "1.0.0",
"description": "",
"main": "./dist/server/index.js",
"files": [
"dist",
"package.json",
"package-lock.json"
],
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node ./dist/server/index.js",
"dev": "ts-node ./src/server/index.ts",
"start:prod": "node ./dist/server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itsrusty/route-provider-system.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.19",
"express": "^4.18.2",
"express-session": "^1.18.0",
"nodemon": "^3.0.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/colors": "^1.2.1",
"@types/express-session": "^1.17.10",
"@types/node-cron": "^3.0.11",
"bcrypt": "^5.1.1",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.4.4",
"express-expeditious": "^4.0.0",
"jsonwebtoken": "^9.0.2",
"moment-timezone": "^0.5.45",
"mongoose": "^8.1.2",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"redis": "^4.6.13",
"sequelize": "^6.37.0",
"socket.io": "^4.7.4",
"sockets": "^0.4.2",
"winston": "^3.11.0"
}
}