-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.61 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@headlessui/react": "^1.4.3",
"@heroicons/react": "^1.0.5",
"@mantine/core": "^4.2.4",
"@mantine/form": "^4.2.4",
"@mantine/hooks": "^4.2.4",
"@mantine/modals": "^4.2.4",
"@mantine/notifications": "^4.2.4",
"@reduxjs/toolkit": "^1.7.2",
"@tailwindcss/forms": "^0.4.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.25",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.22",
"axios": "^0.27.2",
"firebase": "^9.6.7",
"firebase-admin": "^10.0.2",
"firebase-functions": "^3.20.0",
"formik": "^2.2.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-firebase-hooks": "^5.0.3",
"react-redux": "^7.2.8",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.0",
"react-step-builder": "^3.0.6",
"tabler-icons-react": "^1.48.0",
"typescript": "^4.5.5",
"web-vitals": "^2.1.4",
"yup": "^0.32.11"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --runInBand --forceExit",
"eject": "react-scripts eject",
"test:ci": "npm run test -- --runInBand --detectOpenHandles --coverage --ci --testResultsProcessor=\"jest-junit\" --watchAll=false --forceExit",
"json-server": "json-server -p3001 --watch json-db.json"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/enzyme": "^3.10.12",
"@types/reach__router": "^1.3.10",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"autoprefixer": "^10.4.5",
"enzyme": "^3.11.0",
"jest": "^27.5.1",
"jest-junit": "^13.2.0",
"jest-watch-typeahead": "^0.6.5",
"json-server": "^0.17.0",
"postcss": "^8.4.6",
"tailwindcss": "^3.0.23"
},
"jest-junit": {
"suiteName": "jest tests",
"outputDirectory": "./coverage",
"outputName": "junit.xml",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}"
},
"jestSonar": {
"reportPath": "reports",
"reportFile": "test-reporter.xml",
"indent": 4,
"env": {
"test": {
"reportPath": "reports-test"
}
}
}
}