-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.98 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
{
"name": "sql-trainer-2",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "concurrently -n \"SB,TW\" -c \"magenta,blue\" \"start-storybook --ci -p 6006\" \"tailwindcss -i ./src/index.css -o ./public/storybook-tailwind.css --watch\"",
"test-storybook": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"build-storybook && http-server storybook-static --port 6006 --silent\" \"wait-on tcp:6006 && test-storybook\"",
"build-storybook": "npm run build-storybook-tailwind && build-storybook",
"build-storybook-tailwind": "tailwindcss -i ./src/index.css -o ./public/storybook-tailwind.css"
},
"dependencies": {
"@reduxjs/toolkit": "1.9.2",
"i18next": "22.4.9",
"react": "18.2.0",
"react-aria": "3.22.0",
"react-dom": "18.2.0",
"react-i18next": "12.1.4",
"react-redux": "8.0.5",
"react-resizable": "3.0.4",
"react-stately": "3.20.0",
"redux-localstorage-simple": "2.5.1",
"sql.js": "1.8.0",
"threads": "1.7.0"
},
"devDependencies": {
"@babel/core": "7.20.5",
"@storybook/addon-a11y": "6.5.16",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-interactions": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/builder-vite": "0.3.0",
"@storybook/react": "6.5.16",
"@storybook/test-runner": "0.9.3",
"@storybook/testing-library": "0.0.13",
"@types/react": "18.0.24",
"@types/react-dom": "18.0.8",
"@types/react-resizable": "3.0.3",
"@types/sql.js": "1.4.4",
"@vitejs/plugin-react": "2.2.0",
"autoprefixer": "10.4.13",
"axe-playwright": "1.1.12",
"babel-loader": "8.3.0",
"concurrently": "7.6.0",
"http-server": "14.1.1",
"postcss": "8.4.19",
"tailwindcss": "3.2.4",
"typescript": "4.6.4",
"vite": "3.2.3",
"wait-on": "7.0.1"
},
"volta": {
"node": "16.18.1"
}
}