-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (69 loc) · 2.29 KB
/
package.json
File metadata and controls
75 lines (69 loc) · 2.29 KB
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
{
"author": "Daniel Kauer",
"homepage": "https://www.danielkauer.at",
"license": "MIT",
"devDependencies": {
"@parcel/transformer-less": "2.9.2",
"@parcel/transformer-typescript-tsc": "2.9.2",
"@storybook/addon-actions": "7.0.9",
"@storybook/addon-essentials": "7.0.9",
"@storybook/addon-interactions": "7.0.9",
"@storybook/addon-links": "7.0.9",
"@storybook/addons": "7.0.9",
"@storybook/react": "7.0.9",
"@storybook/react-vite": "7.0.9",
"@storybook/testing-library": "^0.1.0",
"@storybook/theming": "7.0.9",
"@types/three": "0.152.1",
"parcel": "2.9.2",
"process": "0.11.10",
"run-script-os": "1.1.6",
"storybook": "7.0.9",
"typescript": "5.1.3",
"vite": "4.2.0"
},
"dependencies": {
"@react-three/fiber": "8.13.3",
"framer-motion": "10.12.21",
"framer-motion-3d": "10.12.21",
"mini-svg-data-uri": "^1.4.4",
"npm-run-all": "4.1.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "6.0.3",
"react-router-dom": "6.14.0",
"styled-components": "6.0.0-rc.3",
"three": "0.153.0"
},
"scripts": {
"postinstall": "run-script-os",
"postinstall:darwin": "mkdir node_modules ; xattr -w com.dropbox.ignored 1 node_modules",
"postinstall:win32:linux": "echo skipping postinstall",
"storybook": "storybook dev -p 6006",
"dev": "run-s clean:dist prepare:dist dev:watch",
"build": "run-s clean:* prepare:dist production:build",
"dev:watch": "yarn parcel --target web",
"production:build": "yarn parcel build --target web --no-cache --no-source-maps --detailed-report",
"clean:dist": "run-script-os",
"clean:dist:darwin:linux": "rm -Rf dist",
"clean:dist:win32": "echo skipping clean:dist",
"clean:cache": "run-script-os",
"clean:cache:darwin:linux": "rm -Rf .parcel-cache",
"clean:cache:win32": "echo skipping clean:cache",
"prepare:dist": "run-script-os",
"prepare:dist:darwin": "mkdir dist ; xattr -w com.dropbox.ignored 1 dist",
"prepare:dist:win32:linux": "echo skipping prepare:dist"
},
"targets": {
"web": {
"source": "src/html/index.html",
"distDir": "dist",
"publicUrl": ".",
"scopeHoist": false,
"includeNodeModules": {
"storybook": false
},
"context": "browser"
}
}
}