-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "johikes",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"build": "rimraf dist && npx tsc",
"prestart": "npm run build",
"start": "node dist/server.js",
"preserve": "npm run build",
"serve": "npx tsc -w & nodemon dist/server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@tomtom-international/web-sdk-maps": "^6.23.0",
"@tomtom-international/web-sdk-services": "^6.23.0",
"@types/bcryptjs": "^2.4.2",
"@types/connect-flash": "^0.0.37",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/ioredis": "^5.0.0",
"@types/node": "^20.2.5",
"@types/redis": "^4.0.11",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"dotenv": "^16.1.4",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.18.0",
"ioredis": "^5.3.2",
"mapquest": "^0.2.0",
"mysql2": "^3.3.3",
"rimraf": "^5.0.1",
"sequelize": "^6.32.0",
"typescript": "^5.1.3"
}
}