-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
46
47
48
49
{
"name": "scratch-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --mode development --open --hot",
"start": "NODE_ENV=development webpack-dev-server --open & NODE_ENV=development nodemon server/server.js",
"build": "NODE_ENV=production webpack",
"server": "NODE_ENV=production nodemon server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ykim770/Scratch-Project.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ykim770/Scratch-Project/issues"
},
"homepage": "https://github.com/ykim770/Scratch-Project#readme",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.0",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"axios": "^1.1.3",
"cors": "^2.8.5",
"express": "^4.18.2",
"modal": "^1.2.0",
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-router-dom": "^6.4.3",
"sass": "^1.56.0"
}
}