-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.29 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
{
"name": "logbook",
"version": "1.0.0",
"description": "LogBook is a web application designed to manage the growing and changing needs of inventory management at Dieform",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.prod.js",
"test": "jest"
},
"author": "DieForm Automation",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@svgr/webpack": "^5.4.0",
"@testing-library/dom": "^7.26.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.10",
"autoprefixer": "^9.8.6",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-react": "^7.20.6",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.4.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-html-reporters": "^2.1.0",
"lint-staged": "^10.4.0",
"mini-css-extract-plugin": "^0.11.2",
"msw": "^0.21.3",
"postcss-cli": "^7.1.2",
"postcss-loader": "^4.0.2",
"prettier": "^2.1.2",
"style-loader": "^1.2.1",
"tailwindcss": "^1.8.10",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.3.0"
},
"dependencies": {
"@react-pdf/renderer": "^1.6.12",
"axios": "^0.20.0",
"core-js": "^3.6.5",
"formik": "^2.2.5",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-query": "^2.23.1",
"react-router-dom": "^5.2.0",
"react-select": "^3.1.0",
"react-table": "^7.6.1",
"react-toastify": "^6.1.0",
"regenerator-runtime": "^0.13.7",
"yup": "^0.29.3",
"zustand": "^3.1.3"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --fix"
],
"src/**/*.{js,jsx,json,css,scss,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}