-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.15 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
{
"name": "boilerplate_rebuild_react_app",
"version": "0.1.0",
"private": true,
"engineStrict": true,
"engines": {
"node": ">=16"
},
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.0",
"@dnd-kit/sortable": "^7.0.2",
"@emotion/react": "^11.11.1",
"@mantine/core": "^6.0.11",
"@mantine/dates": "^6.0.20",
"@mantine/form": "^6.0.20",
"@mantine/hooks": "^6.0.11",
"axios": "^0.21.4",
"clsx": "^1.1.1",
"date-fns": "^2.16.1",
"dayjs": "^1.11.9",
"lodash.camelcase": "^4.3.0",
"lodash.get": "^4.4.2",
"lodash.snakecase": "^4.1.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-aria": "^3.7.1",
"react-dom": "^16.13.1",
"react-icons": "^4.3.1",
"react-query": "^3.34.19",
"react-quill": "^1.3.5",
"react-router-dom": "^5.2.0",
"react-table": "^7.8.0",
"seedrandom": "^3.0.5"
},
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint --ext=js,jsx .",
"storybook": "start-storybook -p 6006 --host 0.0.0.0",
"build-storybook": "build-storybook -o public/storybook",
"cypress:open": "cypress open"
},
"proxy": "http://localhost:3000",
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.3",
"@storybook/addon-a11y": "^6.5.9",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^7.0.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-vite": "^7.0.9",
"@storybook/react": "^7.0.9",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@vitejs/plugin-react": "^2.0.0",
"@vitest/ui": "^0.18.1",
"cypress": "^12.4.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^3.4.0",
"jsdom": "^20.0.0",
"prettier": "^2.3.1",
"vite": "^3.2.8",
"vite-plugin-eslint": "^1.7.0",
"vite-plugin-svgr": "^3.2.0",
"vitest": "^0.32.0"
}
}