-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.04 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
{
"name": "frontend",
"version": "1.0.0",
"type": "module",
"engines": {
"node": "20.x.x",
"npm": "10.x.x"
},
"scripts": {
"lint:css": "npx stylelint \"src/**/*.scss\" --aei",
"lint:js": "npx eslint \"src/**/*.{ts,tsx}\"",
"lint:js:fix": "npx eslint --fix \"src/**/*.{ts,tsx}\"",
"lint:type": "npx tsc --noEmit",
"lint": "npm run lint:type && npm run lint:js",
"lint:fix": "npm run lint:type && npm run lint:js:fix",
"start:dev": "vite",
"build": "tsc -p tsconfig.build.json && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@vite-pwa/assets-generator": "0.2.4",
"@vitejs/plugin-react": "4.3.1",
"autoprefixer": "10.4.20",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"postcss": "8.4.41",
"vite": "5.4.0",
"vite-plugin-pwa": "0.20.1",
"workbox-core": "7.1.0"
},
"dependencies": {
"@chakra-ui/icons": "2.1.1",
"@chakra-ui/react": "2.8.2",
"@dnd-kit/core": "6.1.0",
"@emotion/react": "11.13.0",
"@emotion/styled": "11.13.0",
"@fortawesome/free-regular-svg-icons": "6.6.0",
"@fortawesome/free-solid-svg-icons": "6.6.0",
"@fortawesome/react-fontawesome": "0.2.2",
"@reduxjs/toolkit": "2.2.7",
"@remotion/media-utils": "4.0.201",
"@remotion/player": "4.0.201",
"date-fns": "3.6.0",
"dnd-timeline": "2.0.0",
"formik": "2.4.6",
"framer-motion": "11.3.24",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.1.2",
"react-router-dom": "6.26.0",
"remotion": "4.0.201",
"shared": "*",
"socket.io-client": "4.7.5",
"zod-formik-adapter": "1.3.0"
},
"overrides": {
"vite": {
"rollup": "npm:@rollup/wasm-node"
}
}
}