-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
{
"name": "@codekids-vt/rush-hour",
"version": "0.0.1",
"module": "dist/index.es.js",
"main": "dist/index.cjs.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"devDependencies": {
"@storybook/addon-essentials": "^7.6.16",
"@storybook/addon-interactions": "^7.6.16",
"@storybook/addon-links": "^7.6.16",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/addon-themes": "^7.6.16",
"@storybook/blocks": "^7.6.16",
"@storybook/react": "^7.6.16",
"@storybook/react-vite": "^7.6.16",
"@storybook/test": "^7.6.16",
"@types/bun": "latest",
"@types/react": "^18.2.55",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.6.16",
"tailwindcss": "^3.4.1",
"vite": "^5.1.2",
"vite-plugin-dts": "^3.7.2"
},
"resolutions": {
"react": "^18",
"react-dom": "^18"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"reagraph": "^4.15.10",
"typescript": "^5.0.0"
},
"scripts": {
"build": "tsc && vite build",
"style": "tailwindcss -i ./src/index.css -o ./src/output.css --watch",
"format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "https://github.com/codekids-vt/rush-hour.git"
},
"dependencies": {
"vite-plugin-css-injected-by-js": "^3.4.0"
}
}