This repository has been archived by the owner on Mar 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.32 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
88
{
"name": "react-three-editor",
"description": "Visual editor for creating animations with React Three Fiber",
"keywords": [
"react",
"three",
"fiber",
"motion",
"graphics",
"animation",
"editor",
"rendering",
"exporter",
"timeline"
],
"repository": "https://github.com/paulkre/react-three-editor.git",
"author": "Paul Kretschel <[email protected]>",
"license": "MIT",
"version": "2.2.1",
"main": "lib/index.js",
"bin": "lib/bin/index.js",
"dependencies": {
"b64-to-blob": "^1.2.19",
"classnames": "^2.2.6",
"file-saver": "^2.0.5",
"mkdirp": "^1.0.4",
"react-three-fiber": "^5.3.21",
"three": "^0.126.1",
"ws": "^7.4.4"
},
"scripts": {
"start": "start-storybook",
"start-server": "ts-node src/bin",
"build": "rimraf lib && yarn build:ts && yarn build:css",
"build:ts": "tsc",
"build:css": "cross-env NODE_ENV=production postcss -o lib/index.css src/index.css",
"lint": "eslint"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"files": [
"README.md",
"lib/"
],
"devDependencies": {
"@storybook/addon-essentials": "^6.2.2",
"@storybook/addon-info": "^5.3.21",
"@storybook/addons": "^6.2.2",
"@storybook/react": "^6.2.2",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/postcss7-compat": "^2.0.4",
"@types/classnames": "^2.2.11",
"@types/file-saver": "^2.0.1",
"@types/mkdirp": "^1.0.1",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^17.0.0",
"@types/three": "^0.126.1",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"autoprefixer": "^9",
"cross-env": "^7.0.3",
"cssnano": "^4.1.10",
"eslint": "^7.23.0",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^7",
"postcss-cli": "^7",
"react-app-rewire-alias": "^1.0.3",
"rimraf": "^3.0.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"ts-node": "^9.1.1",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1"
}
}