-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
{
"name": "root-san-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"yarn start-mock\"",
"vite": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "rome check .",
"lint:fix": "rome check . --apply",
"format": "rome format . --write",
"gen-api": "openapi-generator-cli generate -g typescript-fetch -i https://raw.githubusercontent.com/root-san/root-san/main/docs/openapi.yaml -o ./src/libs/apis/generated/",
"start-mock": "prism mock -p 4010 -d https://raw.githubusercontent.com/root-san/root-san/main/docs/openapi.yaml",
"clean": "rimraf ./src/libs/apis/generated",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"connect-history-api-fallback": "^2.0.0",
"express": "^4.18.2",
"framer-motion": "^7.10.0",
"jsqr": "^1.4.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-router-dom": "^6.4.5",
"react-swipeable": "^7.0.0",
"swr": "^2.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@openapitools/openapi-generator-cli": "^2.5.2",
"@stoplight/prism-cli": "^4.10.5",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-vite": "^0.2.5",
"@storybook/react": "^6.5.14",
"@storybook/testing-library": "^0.0.13",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/uuid": "^9.0.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.3.0",
"concurrently": "^7.6.0",
"postcss": "^8.4.20",
"rimraf": "^3.0.2",
"rome": "^11.0.0",
"sass": "^1.56.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-pwa": "^0.14.0"
}
}