-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.47 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "open-inventory-web",
"version": "0.1.0",
"description": "Inventory Management System Frontend",
"main": "index.js",
"repository": "https://github.com/openinventoryorg/web-frontend",
"homepage": "https://openinventoryorg.github.io/web-frontend/",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "./node_modules/.bin/eslint --ext .js config/ models/ routes/ seeders/ index.js",
"lint-fix": "./node_modules/.bin/eslint --fix --ext .js,.jsx src/"
},
"author": "openinventoryorg",
"license": "MIT",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.45",
"axios": "^0.19.2",
"cloudinary-react": "^1.4.0",
"clsx": "^1.1.0",
"formik": "^2.1.4",
"formik-material-ui": "^2.0.0-beta.1",
"immer": "^6.0.2",
"material-table": "^1.57.2",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-barcode": "^1.4.0",
"react-component-export-image": "^0.1.6",
"react-dom": "^16.13.0",
"react-icons": "^3.9.0",
"react-modal": "^3.11.2",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.2",
"react-service-worker": "^0.1.1",
"redux": "^4.0.5",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.3.0",
"socket.io-client": "^2.3.0",
"yup": "^0.28.3"
},
"devDependencies": {
"@testing-library/dom": "^7.0.4",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.1",
"@testing-library/user-event": "^10.0.0",
"babel-jest": "^24.9.0",
"enzyme": "^3.11.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"jest": "^24.9.0",
"nock": "^12.0.3",
"prettier": "^1.19.1",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.13.1",
"redux-mock-store": "^1.5.4"
}
}