-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 912 Bytes
/
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
{
"name": "ui",
"version": "1.0.0",
"description": "reactquiz",
"main": "index.js",
"engines": {
"node": "10.16.3",
"npm" : "6.9.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/server.js",
"compile": "webpack --mode production",
"watch": "webpack --watch",
"heroku-postbuild": "npm run compile"
},
"author": "Andrew L. Sirico",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.26.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"whatwg-fetch": "^3.4.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"babel-loader": "^8.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}