-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 690 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 690 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
{
"name": "wanted-pre-onboarding",
"author": "Yongki Kim",
"license": "ISC",
"main": "index.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "node --watch --trace-warnings index.js",
"test": "node_modules\\.bin\\jest --detectOpenHandles",
"data:breadcrumbs": "node scripts/insert-breadcrumbs.js",
"data:breadcrumbs-sibling": "node scripts/insert-breadcrumbs-sibling.js"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.5.2"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"jest": "^29.6.2",
"supertest": "^6.3.3"
}
}