-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"name": "indecision",
"version": "1.0.0",
"main": "index.js",
"author": "emmanuel kachi",
"license": "MIT",
"engines": {
"node": "12.x"
},
"scripts": {
"serve": "live-server public/",
"build": "webpack",
"build:prod": "webpack --mode=production",
"dev-server": "webpack serve",
"start": "node server/server.js",
"heroku-postbuild": "npm run build:prod"
},
"dependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"babel-loader": "^8.2.1",
"css-loader": "^5.0.1",
"express": "^4.17.1",
"live-server": "^1.2.1",
"mini-css-extract-plugin": "^1.3.1",
"node-sass": "^4.14.1",
"normalize.css": "^8.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-modal": "^3.12.1",
"react-router-dom": "^5.2.0",
"sass-loader": "^10.1.0",
"style-loader": "^0.18.2",
"validator": "^8.0.0",
"webpack": "^5.8.0",
"webpack-cli": "^4.2.0"
},
"devDependencies": {
"webpack-dev-server": "^3.11.0"
}
}