-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
120 lines (120 loc) · 3.4 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
{
"name": "elmaonline-web",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fingerprintjs/fingerprintjs": "^4.5.1",
"@hotjar/browser": "^1.0.9",
"@kevinwolf/formal-web": "^0.1.3",
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"@material-ui/lab": "^4.0.0-alpha.57",
"@tanstack/react-query": "^5.59.20",
"@tanstack/react-query-devtools": "^5.59.20",
"@tanstack/react-router": "^1.79.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"apisauce": "^3.1.0",
"date-fns": "^4.1.0",
"easy-peasy": "^6.0.5",
"elma-js": "https://github.com/ville-j/elma-js",
"flag-icons": "^7.2.3",
"google-map-react": "^2.1.9",
"level-editor-gui": "https://github.com/elmadev/level-editor-gui.git",
"lodash": "^4.17.21",
"memoizee": "^0.4.17",
"nanoid": "^5.0.8",
"query-string": "9.1.1",
"react": "^18.3.1",
"react-beautiful-dnd": "13.1.1",
"react-dom": "^18.3.1",
"react-dropzone": "14.3.5",
"react-google-recaptcha": "^3.1.0",
"react-helmet-async": "^2.0.5",
"react-outside-click-handler": "^1.3.0",
"react-tiny-bbcode": "^0.4.0",
"react-window": "1.8.10",
"recharts": "2.13.3",
"recplayer-react": "^1.7.2",
"universal-cookie": "^7.2.2",
"use-debounce": "^10.0.4",
"yup": "^1.4.0"
},
"scripts": {
"start": "vite --mode test",
"start:dev": "vite",
"build": "vite build",
"serve": "vite preview",
"g": "plop",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"prettier": "prettier --check src/**/*.js",
"commit": "git-cz",
"lint": "eslint ."
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@emotion/babel-plugin": "^11.12.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@eslint/js": "^9.14.0",
"@storybook/addon-actions": "^6.1.14",
"@storybook/addon-essentials": "^6.1.14",
"@storybook/addon-links": "^6.1.14",
"@storybook/node-logger": "^6.1.14",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/react": "^6.1.14",
"@tanstack/router-devtools": "^1.79.0",
"@vitejs/plugin-react": "^4.3.3",
"commitizen": "^4.3.1",
"cz-customizable": "^7.2.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.11.0",
"husky": "^4.3.8",
"lint-staged": "^15.2.10",
"plop": "^4.0.1",
"prettier": "^3.3.3",
"rollup-plugin-polyfill-node": "^0.13.0",
"vite": "^5.4.10"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.cjs"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint ."
}
}