-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.3 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
{
"name": "intro-storybook-react-template",
"version": "0.2.0",
"description": "Starter template to get up and running quickly with React and Storybook",
"author": "Chromatic <https://chromatic.com/>",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/chromaui/intro-storybook-react-template"
},
"bugs": {
"url": "https://github.com/chromaui/intro-storybook-react-template/issues"
},
"license": "MIT",
"private": true,
"dependencies": {
"@fontsource/montserrat": "^5.1.0",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"axios": "^1.7.7",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"dev:form": "ENTRY=spawn.html vite",
"dev:spawn_p": "ENTRY=spawn_pending.html vite",
"dev:login": "ENTRY=login.html vite",
"dev:not_running": "ENTRY=not_running.html vite",
"dev:home": "ENTRY=home.html vite",
"dev-cas:form": "cd cas && ENTRY=spawn.html vite",
"dev-cas:spawn_p": "cd cas && ENTRY=spawn_pending.html vite",
"dev-cas:login": "cd cas && ENTRY=login.html vite",
"dev-cas:not_running": "cd cas && ENTRY=not_running.html vite",
"dev-cas:home": "cd cas && ENTRY=home.html vite",
"dev-c9088:form": "cd c9088 && ENTRY=spawn.html vite",
"dev-c9088:spawn_p": "cd c9088 && ENTRY=spawn_pending.html vite",
"dev-c9088:login": "cd c9088 && ENTRY=login.html vite",
"dev-c9088:not_running": "cd c9088 && ENTRY=not_running.html vite",
"dev-c9088:home": "cd c9088 && ENTRY=home.html vite",
"dev-elter:form": "cd elter-ri && ENTRY=spawn.html vite",
"dev-elter:spawn_p": "cd elter-ri && ENTRY=spawn_pending.html vite",
"dev-elter:login": "cd elter-ri && ENTRY=login.html vite",
"dev-elter:not_running": "cd elter-ri && ENTRY=not_running.html vite",
"dev-elter:home": "cd elter-ri && ENTRY=home.html vite",
"build:hub": "vite build",
"build:c9088": "cd c9088 && vite build --emptyOutDir",
"build:cas": "cd cas && vite build --emptyOutDir",
"build:elter": "cd elter-ri && vite build --emptyOutDir",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "npx eslint .",
"format": "npx prettier --write \"src/**/*.{js,ts,jsx,tsx,json,css,html}\"",
"lintc": "npx eslint --print-config .",
"init-msw": "msw init public/"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-storybook": "^0.8.0",
"globals": "^15.12.0",
"msw": "^2.3.0",
"msw-storybook-addon": "^2.0.3",
"prettier": "^3.4.1",
"prop-types": "^15.8.1",
"storybook": "^8.4.7",
"typescript-eslint": "^8.16.0",
"vite": "^5.2.0"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}