forked from bcgov/HOUS-permit-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.57 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
{
"name": "hous-permit-potal",
"type": "module",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": ">=v20.10.0"
},
"devDependencies": {
"@chakra-ui/cli": "^2.4.1",
"@prettier/plugin-ruby": "^4.0.2",
"@types/leaflet": "^1.9.8",
"@types/quill": "^2.0.14",
"@types/ramda": "^0.29.9",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.22.0",
"husky": "^8.0.3",
"lint-staged": "^11.0.0",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactotron-apisauce": "^3.0.0",
"reactotron-mst": "^3.1.4",
"reactotron-react-js": "^3.3.8",
"sass": "^1.70.0",
"typescript": "^5.3.2",
"vite": "^5.0.11",
"vite-plugin-ruby": "^5.0.0"
},
"dependencies": {
"@bcgov/bc-sans": "^2.1.0",
"@chakra-ui/react": "^2.8.2",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@formio/js": "^5.0.0-rc.37",
"@formio/react": "^5.3.0",
"@phosphor-icons/react": "^2.0.15",
"@types/jest": "^29.5.10",
"@types/node": "^20.9.4",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"apisauce": "^3.0.1",
"date-fns": "^2.30.0",
"formiojs": "^4.17.4",
"framer-motion": "^10.16.5",
"humps": "^2.0.1",
"i18next": "^23.7.6",
"leaflet": "^1.9.4",
"mobx": "^6.11.0",
"mobx-persist-store": "^1.1.3",
"mobx-react-lite": "^4.0.5",
"mobx-state-tree": "^5.4.0",
"query-string": "^8.1.0",
"quill-delta": "^5.1.0",
"ramda": "^0.29.1",
"rc-pagination": "^4.0.4",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.48.2",
"react-i18next": "^13.5.0",
"react-leaflet": "^4.2.1",
"react-password-strength-bar": "^0.4.1",
"react-quill": "^2.0.0",
"react-router-dom": "^6.20.0",
"react-select": "^5.8.0"
},
"overrides": {
"vite": {
"rollup": "npm:@rollup/wasm-node"
}
},
"scripts": {
"dev": "bin/vite dev",
"build": "bundle exec vite build",
"lint": "eslint app/frontend/**/*.ts[x]",
"prepare": "husky install",
"gen:theme-typings": "chakra-cli tokens app/frontend/styles/theme/index.ts",
"postinstall": "npm run gen:theme-typings"
},
"lint-staged": {
"*.{js,css,md,rb,ts,tsx}": [
"prettier --write"
],
"*.rb": [
"stree write"
]
}
}