-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
50
51
52
53
54
{
"name": "order_issuer",
"description": "Simple project to order products",
"version": "1.0.0",
"author": "Luiz",
"dependencies": {
"bower": "1.8.8",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-loader-spinner": "^4.0.0"
},
"license": "UNLICENSED",
"engines": {
"node": "12"
},
"scripts": {
"heroku-postbuild": "npm install",
"start": "./node_modules/.bin/webpack --config webpack.config.js --mode=development",
"build": "export API_URL=https://order-issuer.herokuapp.com/api/ && ./node_modules/.bin/webpack --config webpack.config.js --mode=production",
"watch": "npm run start -- --watch"
},
"main": "index.js",
"directories": {
"test": "tests"
},
"devDependencies": {
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.12.13",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"axios": "^0.21.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"css-loader": "^5.2.6",
"dotenv": "^8.2.0",
"loadash": "^1.0.0",
"node-sass": "^6.0.0",
"react-router-dom": "^5.2.0",
"react-window": "^1.8.6",
"sass": "^1.34.0",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"webpack": "^5.24.2",
"webpack-bundle-tracker": "^0.4.3",
"webpack-cli": "^4.5.0"
}
}