-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 968 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 968 Bytes
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
{
"name": "vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "concurrently 'npm run storybook' 'npm run dev' 'cd application && npx http-server' --kill-others",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@govtechsg/decentralized-renderer-react-components": "^3.8.0",
"@govtechsg/open-attestation": "^6.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/builder-vite": "^0.4.2",
"@storybook/react": "^6.5.16",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"babel-loader": "^8.3.0",
"concurrently": "^7.6.0",
"typescript": "^4.9.3",
"vite": "^4.2.0"
}
}