-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (32 loc) · 785 Bytes
/
package.json
File metadata and controls
33 lines (32 loc) · 785 Bytes
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
{
"name": "express-typescript",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "node --watch ./src/index.js",
"prod": "node ./src/index.js",
"test": "jest",
"cy:run:chrome": "npx cypress run --browser chrome"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"body-parser": "^1.20.3",
"bootstrap": "^5.3.3",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-handlebars": "^8.0.1",
"express-session": "^1.18.1",
"mysql2": "^3.11.3",
"sequelize": "^6.37.5"
},
"devDependencies": {
"cypress": "^13.15.2",
"cypress-mochawesome-reporter": "^3.8.2",
"cypress-multi-reporters": "^2.0.4",
"jest": "^29.7.0",
"mocha-junit-reporter": "^2.2.1"
}
}