-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 2.17 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": "protools",
"private": true,
"version": "0.2.2.4-SNAPSHOT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"postinstall": "copy-dsfr-to-public",
"predev": "only-include-used-icons",
"prebuild": "only-include-used-icons"
},
"dependencies": {
"@codegouvfr/react-dsfr": "^1.5.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.13.5",
"@mui/x-data-grid": "^6.9.1",
"@react-keycloak/keycloak-ts": "^0.2.4",
"@tanstack/react-query": "^5.20.5",
"@tanstack/react-query-devtools": "^5.20.5",
"@types/node": "^20.3.1",
"bpmn-js": "^17.0.0",
"diagram-js-minimap": "^4.1.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.1.3",
"install": "^0.13.0",
"keycloak-js": "^23.0.6",
"localforage": "^1.10.0",
"match-sorter": "^6.3.1",
"moment": "^2.29.4",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-bpmn": "^0.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-json-view": "^1.21.3",
"react-query": "^3.39.3",
"react-router-dom": "^6.13.0",
"sort-by": "^1.2.0",
"tsafe": "^1.6.5",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^4.29.9",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"lint-staged": ">=10",
"typescript": "^5.0.2",
"vite": "^5.1.3"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix"
}
}