-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 4.49 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "binnacle-front",
"version": "4.0.62-SNAPSHOT.0",
"private": true,
"homepage": "/binnacle",
"scripts": {
"dev": "vite",
"dev:sw": "rimraf dev-dist && cross-env DEBUG=vite-plugin-pwa:* SW_DEV=true vite --force",
"dev:reloadsw": "npm run build:reloadsw && serve build",
"dev:reloadsw-claim": "npm run build:reloadclaim && serve build",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest --coverage",
"test:integration": "cypress run --component",
"test:e2e": "cypress run",
"test:open": "cypress open",
"check:types": "tsc",
"lint": "eslint . --ext ts,tsx",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write --ignore-path .gitignore .",
"serve": "vite preview",
"build": "npm run build:reloadclaim",
"build:reloadsw": "cross-env DEBUG=vite-plugin-pwa:* BASE_URL=/ SOURCE_MAP=true RELOAD_SW=true vite build",
"build:reloadclaim": "cross-env DEBUG=vite-plugin-pwa:* BASE_URL=/ SOURCE_MAP=true CLAIMS=true RELOAD_SW=true vite build",
"build:dev": "PUBLIC_URL=./ env-cmd -f .env.development npm run build",
"build:int": "env-cmd -f .env.integration npm run build && npm run zip-int",
"build:prod": "npm run build && npm run zip-prod",
"zip-int": "cd build; zip -r ../binnacle_front_${npm_package_version}_int.zip * .htaccess",
"zip-prod": "cd build; zip -r ../binnacle_front_$npm_package_version.zip * .htaccess",
"prepare": "husky install",
"jest": "jest",
"cypress": "cypress"
},
"dependencies": {
"@archimedes/arch": "2.2.1",
"@chakra-ui/icons": "2.1.0",
"@chakra-ui/react": "2.8.0",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@heroicons/react": "2.0.18",
"@hookform/resolvers": "3.1.1",
"@types/react-router-dom": "5.3.3",
"axios": "1.4.0",
"browser-image-compression": "2.0.2",
"chart.js": "4.3.2",
"date-fns": "2.30.0",
"downshift": "8.1.0",
"focus-visible": "5.2.0",
"framer-motion": "10.15.0",
"history": "5.3.0",
"i18next": "23.4.1",
"i18next-browser-languagedetector": "7.1.0",
"match-sorter": "6.3.1",
"react": "18.2.0",
"react-chartjs-2": "5.2.0",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"react-focus-on": "3.9.1",
"react-hook-form": "7.45.2",
"react-i18next": "13.0.2",
"react-ios-pwa-prompt": "1.8.4",
"react-popper-tooltip": "4.4.2",
"react-router-dom": "6.14.2",
"react-textarea-autosize": "8.5.2",
"reflect-metadata": "0.1.13",
"tsyringe": "4.8.0",
"yup": "1.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.22.7",
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"@nabla/vite-plugin-eslint": "1.5.0",
"@rollup/plugin-replace": "5.0.2",
"@testing-library/cypress": "9.0.0",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.5.3",
"@types/node": "20.4.5",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.2.0",
"@typescript-eslint/parser": "6.2.0",
"@vitejs/plugin-react": "4.0.3",
"babel-plugin-transform-typescript-metadata": "0.3.2",
"cross-env": "7.0.3",
"cypress": "12.17.2",
"cypress-file-upload": "5.0.8",
"cypress-jest-adapter": "0.1.1",
"env-cmd": "10.1.0",
"eslint": "8.46.0",
"eslint-config-prettier": "8.9.0",
"eslint-plugin-cypress": "2.13.3",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-react": "7.33.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "29.6.2",
"jest-environment-jsdom": "29.6.2",
"jest-mock-extended": "3.0.4",
"lint-staged": "13.2.3",
"prettier": "3.0.0",
"ts-jest": "29.1.1",
"typescript": "5.1.6",
"vite": "4.4.7",
"vite-plugin-env-compatible": "1.1.1",
"vite-plugin-pwa": "0.16.4",
"vite-plugin-svgr": "3.2.0",
"vite-tsconfig-paths": "4.2.0",
"workbox-core": "6.5.4",
"workbox-precaching": "6.5.4",
"workbox-routing": "6.5.4",
"workbox-window": "6.5.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": "18.17.0",
"npm": "9.6.7"
},
"volta": {
"node": "18.17.0",
"npm": "9.6.7"
}
}