-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.3 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.3 KB
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
{
"name": "node_team_project",
"version": "1.0.0",
"description": "항해99 NODE.JS 심화주차 팀 프로젝트입니다.",
"main": "app.js",
"scripts": {
"start:dev": "nodemon --watch server.js",
"test": "set jest --detectOpenHandles --forceExit",
"test_db:create": "cross-env NODE_ENV=test npx sequelize db:create",
"test_db:migrate": "cross-env NODE_ENV=test npx sequelize db:migrate",
"prettify": "prettier --write *.js **/*.js",
"dev": "nodemon ./src/server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.1",
"cli": "^1.0.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^7.32.0",
"express": "^4.18.2",
"http-status-codes": "^2.2.0",
"install": "^0.13.0",
"joi": "^17.7.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"next": "^13.0.7",
"np": "^7.6.2",
"sequelize": "^6.27.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"jest": "^29.3.1",
"lint": "^1.1.2",
"node-mocks-http": "^1.12.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"sequelize-cli": "^6.5.2",
"supertest": "^6.3.3"
},
"keywords": [],
"optionalDependencies": {
"win-node-env": "^0.6.1"
}
}