-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.93 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"prestart": "npm run build:css",
"build": "react-scripts build",
"prebuild": "npm run build:css",
"test": "react-scripts test",
"test-cache": "jest --clear-cache",
"eject": "react-scripts eject",
"generate": "graphql-codegen --config codegen.yml",
"build:css": "postcss src/styles/index.css -o src/styles/tailwind.css "
},
"dependencies": {
"@apollo/client": "~3.0.2",
"@reach/router": "~1.3.4",
"@tailwindcss/ui": "~0.4.0",
"dayjs": "~1.8.30",
"formik": "~2.1.5",
"graphql": "~15.0.0",
"graphql-tag": "~2.10.4",
"js-sha256": "~0.9.0",
"react": "~16.13.1",
"react-dom": "~16.13.1",
"react-dropzone": "~11.0.2",
"react-scripts": "3.4.1",
"tailwindcss": "~1.5.2",
"typescript": "~3.9.7",
"yup": "~0.29.1"
},
"devDependencies": {
"@graphql-codegen/cli": "~1.17.4",
"@graphql-codegen/typescript": "~1.17.4",
"@graphql-codegen/typescript-operations": "~1.17.4",
"@graphql-codegen/typescript-react-apollo": "~1.17.4",
"@testing-library/jest-dom": "~4.2.4",
"@testing-library/react": "~9.5.0",
"@testing-library/user-event": "~7.2.1",
"@types/jest": "~26.0.6",
"@types/node": "~12.12.51",
"@types/reach__router": "^1.3.5",
"@types/react": "~16.9.43",
"@types/react-axe": "~3.1.0",
"@types/react-dom": "~16.9.8",
"@types/yup": "~0.29.3",
"autoprefixer": "~9.8.5",
"postcss-cli": "~7.1.1",
"react-axe": "~3.5.3",
"source-map-explorer": "~2.4.2"
},
"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"
]
}
}