-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.97 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
102
{
"name": "plangoab",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"test": "TZ=UTC jest",
"e2e:open": "cypress open",
"e2e:run": "cypress run",
"clean": "rm -rf .next",
"graph:dot": "yarn depcruise --include-only '^src' --output-type dot ./src --output-to dependencygraph.dot",
"graph:svg": "dot dependencygraph.dot -T svg > dependencygraph.svg",
"preinstall": "npx only-allow yarn"
},
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-react": "^7.10.4",
"@date-io/date-fns": "1.x",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@fullcalendar/common": "^5.4.0",
"@fullcalendar/interaction": "^5.4.0",
"@fullcalendar/react": "^5.4.0",
"@fullcalendar/resource-timeline": "^5.4.0",
"@fullcalendar/timeline": "^5.4.0",
"@material-ui/core": "^4.12.3",
"@mui/lab": "^5.0.0-alpha.48",
"@mui/material": "^5.0.1",
"@mui/styled-engine-sc": "^5.0.0",
"@mui/styles": "^5.0.1",
"@mui/x-data-grid": "^4.0.0",
"@reduxjs/toolkit": "^1.6.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jsonapi-serializer": "^3.6.5",
"@types/lodash": "^4.14.171",
"babel-plugin-transform-require-ignore": "^0.1.1",
"date-fns": "^2.16.1",
"isomorphic-fetch": "^3.0.0",
"jsonapi-serializer": "git+https://github.com/AELSchauer/jsonapi-serializer.git",
"lodash": "^4.17.21",
"next": "^10.2.0",
"next-images": "^1.7.0",
"next-transpile-modules": "^4.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.15.1",
"react-redux": "^7.2.2",
"react-use": "^17.3.1",
"redux-persist": "^6.0.0",
"styled-components": "^5.3.1",
"uuid": "^8.3.2",
"web-vitals": "^0.2.4"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:react-hooks/recommended"
],
"rules": {
"react/jsx-pascal-case": "off"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/cypress": "^7.0.6",
"@testing-library/react-hooks": "^7.0.1",
"@types/date-fns": "^2.6.0",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/react": "^17.0.5",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.16",
"@types/styled-components": "^5.1.7",
"@types/uuid": "^8.3.0",
"@types/webpack-env": "^1.16.0",
"cypress": "^7.7.0",
"dependency-cruiser": "^9.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"fishery": "^1.4.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}