-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.84 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.84 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "frontend-react",
"version": "0.1.0",
"private": true,
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/src/testUtils/",
"!<rootDir>/src/service-worker.ts",
"!<rootDir>/src/serviceWorkerRegistration.ts",
"!<rootDir>/src/index.tsx"
]
},
"scripts": {
"prune": "docker system prune --filter until=24h -f",
"start": "craco start",
"preinstall": "npx npm-force-resolutions",
"build": "npm install && npx craco build",
"test": "react-scripts test",
"test:unit": "npm install && npx craco test --coverage --watchAll=false",
"lint": "npm install && npx eslint . --ext js,jsx,ts,tsx",
"coverage": "npm test -- --coverage",
"pretty": "npx prettier --write .",
"docker:build:fullstack:os": "docker-compose -f e2e-compose-os.yml -p fl-e2e-os build --no-cache --parallel",
"docker:build:fullstack": "docker-compose -f e2e-compose.yml -p fl-e2e build --no-cache --parallel",
"docker:up:fullstack": "docker-compose -f e2e-compose.yml -p fl-e2e up --force-recreate",
"docker:up:fullstack:os": "docker-compose -f e2e-compose-os.yml -p fl-e2e-os up --force-recreate",
"docker:build:halfstack": "docker-compose -f half-stack-compose.yml -p fl-hs build --no-cache --parallel",
"docker:build:halfstack:os": "docker-compose -f half-stack-compose-os.yml -p fl-hs-os build --no-cache --parallel",
"docker:up:halfstack": "docker-compose -f half-stack-compose.yml -p fl-hs up --force-recreate",
"docker:up:halfstack:os": "docker-compose -f half-stack-compose-os.yml -p fl-hs-os up --force-recreate",
"e2e": "npx cypress run -b chrome",
"test:e2e-ci": "echo not implemented in pipeline",
"push": "git push gh && git push gl && git checkout main && git merge - && git push gh"
},
"dependencies": {
"@ant-design/charts": "^1.1.4",
"antd": "^4.15.5",
"axios": "^0.21.4",
"date-fns": "^2.21.3",
"is-number": "^7.0.0",
"lodash": "^4.17.21",
"query-string": "^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.16.0",
"uuid": "^8.3.2",
"workbox-cacheable-response": "^6.3.0",
"workbox-core": "^5.1.4",
"workbox-expiration": "^5.1.4",
"workbox-precaching": "^5.1.4",
"workbox-routing": "^5.1.4",
"workbox-strategies": "^5.1.4",
"yup": "^0.32.9",
"zustand": "^3.6.1"
},
"devDependencies": {
"@craco/craco": "^6.3.0",
"craco-less": "^1.20.0",
"@cypress/code-coverage": "^3.9.5",
"@testing-library/dom": "^7.31.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^5.1.3",
"@testing-library/user-event": "^12.8.3",
"@types/antd": "^1.0.0",
"@types/axios": "^0.14.0",
"@types/is-number": "^7.0.1",
"@types/jest": "^26.0.23",
"@types/node": "^12.20.13",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.5",
"@types/react-query": "^1.1.2",
"@types/uuid": "^8.3.0",
"@types/yup": "^0.29.11",
"cypress": "^7.3.0",
"eslint": "^7.26.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"istanbul-lib-coverage": "^3.0.0",
"jest-matchmedia-mock": "^1.1.0",
"msw": "^0.35.0",
"npm-force-resolutions": "0.0.10",
"nyc": "^15.1.0",
"react-scripts": "4.0.3",
"react-test-renderer": "^17.0.2",
"typescript": "^4.2.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"resolutions": {
"tar": "6.1.11",
"tmpl": "1.0.5",
"nth-check": "2.0.1"
}
}