-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.87 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "arbitrium",
"proxy": "http://localhost:4000/",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.13",
"@material-ui/core": "^4.11.1",
"@material-ui/icons": "^4.9.1",
"@react-firebase/auth": "^0.2.10",
"@types/node": "^14.14.10",
"@types/react": "^16.14.2",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^16.9.10",
"@types/styled-components": "^5.1.4",
"aws-sdk": "^2.797.0",
"body-parser": "^1.18.3",
"classnames": "^2.2.6",
"connected-react-router": "6.6.0",
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"express": "^4.17.1",
"firebase": "^7.24.0",
"firebase-admin": "^9.4.1",
"firebase-tools": "^8.16.2",
"http2": "^3.3.7",
"immer": "^7.0.15",
"jspdf": "^2.1.1",
"material-table": "^1.69.2",
"material-ui": "^0.20.2",
"moment": "^2.29.1",
"mongodb": "^3.6.3",
"mongoose": "^5.11.1",
"multer": "^1.4.2",
"navbar": "^2.1.0",
"nodemailer": "^6.4.16",
"nodemon": "^1.19.4",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-beautiful-dnd": "^13.0.0",
"react-csv": "^2.0.3",
"react-dom": "^16.14.0",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.4",
"react-spinner-material": "^1.3.1",
"react-with-firebase-auth": "^1.3.2",
"redux": "^4.0.5",
"styled-components": "^5.2.1",
"typescript": "^4.1.2"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx,json,css}": [
"prettier --write"
]
},
"scripts": {
"start": "react-scripts start",
"server": "cd backend && node server --exec nodemon",
"build": "react-scripts build",
"test": "react-scripts test -watchAll=false --forceExit",
"eject": "react-scripts eject",
"dev": "run-p server start",
"lint-fix": "eslint backend src --fix && prettier --write src/**/* backend/**/*",
"lint": "eslint --max-warnings 0 backend src && prettier -c src/**/* backend/**/*"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"redux-devtools-extension": "^2.13.8"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}