forked from MauricioFa/POSTIC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.21 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.21 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "postic",
"version": "2.0.0",
"description": "App to Point Of Sale. Final student project Escuela JS 2019 Platzi.",
"keywords": [
"Point Of Sale App",
"ReactJS",
"Create React APP"
],
"main": "src/index.js",
"author": "Caraballo Luis, Fajardo Mauricio, Nemogá Jorge",
"license": "MIT",
"homepage": "https://github.com/MauricioFa/POSTIC#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MauricioFa/POSTIC.git"
},
"bugs": {
"url": "https://github.com/MauricioFa/POSTIC/issues"
},
"scripts": {
"build": "webpack-cli --config webpack.config.js --colors",
"start:prod": "node src/ssr/index.js",
"start:dev": "nodemon src/ssr/index.js --exact babel-node",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"format": "prettier --write '{*.js,src/**/*.{js,jsx}}'"
},
"dependencies": {
"@babel/register": "^7.7.0",
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.7",
"@material-ui/core": "4.5.1",
"@material-ui/icons": "4.4.3",
"@material-ui/styles": "^4.6.0",
"asset-require-hook": "^1.2.0",
"autoprefixer": "^9.7.2",
"axios": "^0.19.0",
"clsx": "1.0.4",
"core-js": "^3.4.4",
"dotenv": "^8.2.0",
"eslint-loader": "^3.0.2",
"express": "^4.17.1",
"firebase": "^7.5.0",
"helmet": "^3.21.2",
"history": "^4.10.1",
"ignore-styles": "^5.0.1",
"material-table": "1.52.0",
"postcss-loader": "^3.0.0",
"prop-types": "^15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-hot-loader": "^4.12.18",
"react-redux": "^7.1.1",
"react-router": "^5.1.2",
"react-router-config": "^5.1.1",
"react-router-dom": "5.1.2",
"react-select": "^3.0.8",
"react-to-print": "^2.5.0",
"recharts": "1.7.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.3",
"webpack": "4.41.0",
"webpack-cli": "^3.3.10"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@svgr/webpack": "^4.3.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"compression-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"sass": "^1.23.3",
"sass-loader": "^8.0.0",
"terser-webpack-plugin": "^2.2.1",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.9.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "^2.2.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}