forked from hayoung123/deal-18
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
41
42
43
44
45
{
"name": "deal-18",
"version": "1.0.0",
"description": "## 팀원 소개",
"main": "app.js",
"scripts": {
"dev": "webpack serve --config frontend/webpack.config.js",
"build": "webpack --config frontend/webpack.config.js",
"start": "npm run build & node backend/app.js",
"dev-server": "nodemon backend/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hayoung123/deal-18.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hayoung123/deal-18/issues"
},
"homepage": "https://github.com/hayoung123/deal-18#readme",
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"babel-loader": "^8.2.2",
"core-js": "^3.15.2",
"css-loader": "^5.2.6",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"node-sass": "^6.0.1",
"sass": "^1.35.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.1.0",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"multer": "^1.4.2",
"mysql2": "^2.2.5"
}
}