-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.75 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.75 KB
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
{
"name": "lifetrack-client",
"version": "0.1.0",
"private": true,
"scripts": {
"build:tailwind": "tailwindcss build src/tailwind.css -o src/tailwind.out.css",
"watch:tailwind": "chokidar 'src/**/*.css' --ignore src/tailwind.out.css -c 'npm run build:tailwind'",
"start": "npm-run-all build:tailwind --parallel watch:tailwind start:react",
"start:react": "react-scripts start",
"prestart": "npm run build:tailwind",
"prebuild": "npm run build:tailwind",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@apollo/client": "^3.2.7",
"@date-io/date-fns": "^2.10.6",
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.1.1",
"@emotion/styled": "^11.0.0",
"@material-ui/core": "^5.0.0-alpha.17",
"@material-ui/data-grid": "^4.0.0-alpha.10",
"@material-ui/icons": "^5.0.0-alpha.15",
"@material-ui/lab": "^5.0.0-alpha.17",
"@material-ui/pickers": "^4.0.0-alpha.12",
"chokidar-cli": "^2.1.0",
"date-fns": "^2.16.1",
"fontsource-roboto": "^3.0.3",
"graphql": "^15.4.0",
"graphql.macro": "^1.4.2",
"history": "^5.0.0",
"jsonata": "^1.8.4",
"lodash": "^4.17.20",
"namor": "^2.0.2",
"npm-run-all": "^4.1.5",
"pluralize": "^8.0.0",
"ramda": "^0.27.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.11.5",
"react-router-dom": "^6.0.0-beta.0",
"react-scripts": "^4.0.1",
"react-table": "^7.6.2",
"recoil": "^0.1.2",
"tailwindcss": "^2.0.1",
"zod": "^2.0.0-beta.22"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.2.2",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.9",
"@types/pluralize": "0.0.29",
"@types/ramda": "^0.27.32",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-table": "^7.0.25",
"@types/yup": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.1.10",
"prettier": "^2.2.0",
"recoil-devtools": "0.0.8",
"recoil-devtools-logger": "0.0.9",
"typescript": "^4.1.2"
}
}