-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
62 lines (62 loc) · 1.93 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
55
56
57
58
59
60
61
62
{
"name": "simple-ecommerce",
"version": "1.0.0",
"main": "index.js",
"author": "Saijal Shakya",
"license": "MIT",
"scripts": {
"dev": "webpack --mode development --watch ./ecommerce/frontend/src/index.js --output ./ecommerce/frontend/static/frontend/main.js",
"build": "webpack --mode production ./ecommerce/frontend/src/index.js --output ./ecommerce/frontend/static/frontend/main.js",
"eslint": "eslint ./ecommerce/frontend/src --cache",
"eslint:fix": "eslint --fix --cache ./ecommerce/frontend/src",
"prettier": "prettier ./ecommerce/frontend/src",
"prettier:fix": "prettier --write ./ecommerce/frontend/src",
"lint": "yarn prettier && yarn eslint",
"lint:fix": "yarn prettier:fix && yarn eslint:fix"
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"axios": "^0.20.0",
"i": "^0.3.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"css-loader": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.0",
"husky": "^4.3.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}