-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 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
{
"name": "penumbra",
"version": "1.0.0",
"description": "Solo project etc.",
"main": "server/server.js",
"scripts": {
"start": "nodemon server/server.js",
"build": "cross-env NODE_ENV=production webpack",
"dev": "concurrently \"cross-env NODE_ENV=development webpack-dev-server --open --hot --inline --progress --colors --watch --content-base ./\" \"nodemon ./server/server.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Haejin https://github.com/haejinjo <h3jnjo@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"dotenv": "^8.2.0",
"nodemon": "^2.0.4",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"bootstrap": "^4.5.0",
"express": "^4.17.1",
"pg": "^8.3.0",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"sass": "^1.26.10",
"webpack": "^4.43.0"
}
}