-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 774 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 774 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
{
"name": "algorithm-master-server",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/tpdud406/algorithm-master-sever",
"author": "SeYoung Lee <tpdud406@gmail.com>",
"scripts": {
"start": "node ./bin/www",
"dev": "cross-env NODE_ENV=development nodemon ./bin/www",
"test": "jest --watchAll --runInBand"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"mongoose": "^6.7.2",
"morgan": "~1.9.1",
"vm2": "^3.9.11"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"node-mocks-http": "^1.12.1"
}
}