This repository has been archived by the owner on Oct 5, 2023. It is now read-only.
forked from utsuboco/r3f-perf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.74 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
89
{
"name": "@r3f-perf/root",
"version": "0.0.0-semantic-released",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"demo"
],
"preconstruct": {
"packages": [
"packages/*"
]
},
"scripts": {
"postinstall": "echo 'disabled postinstall patch-package && preconstruct dev'",
"build": "preconstruct build",
"watch": "preconstruct watch",
"dev": "preconstruct dev",
"release": "yarn build && yarn changeset publish",
"validate": "preconstruct validate",
"tsc": "tsc --noEmit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --quiet",
"demo:dev": "yarn workspace demo dev",
"demo:build": "yarn workspace demo build",
"demo:serve": "yarn workspace demo serve"
},
"repository": {
"type": "git",
"url": "https://github.com/RenaudRohlinger/r3f-perf.git"
},
"bugs": "https://github.com/RenaudRohlinger/r3f-perf/issues",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@changesets/cli": "^2.16.0",
"@preconstruct/cli": "^2.1.0",
"@radix-ui/react-icons": "^1.0.2",
"@size-limit/preset-big-lib": "^4.10.1",
"@size-limit/preset-small-lib": "^4.10.1",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/addon-storysource": "^6.1.21",
"@storybook/react": "^6.1.21",
"@types/node": "^15.0.2",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/styled-components": "^5.1.9",
"@types/tinycolor2": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"babel-eslint": "^10.1.0",
"concurrently": "^6.0.0",
"eslint": "^7.22.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"size-limit": "^4.10.1",
"tsd": "^0.17.0",
"typescript": "^4.2.3",
"yalc": "^1.0.0-pre.50"
},
"prettier": {
"semi": false,
"trailingComma": "es5",
"singleQuote": true,
"jsxBracketSameLine": true,
"tabWidth": 2,
"printWidth": 120
},
"resolutions": {
"@r3f-perf/root": "portal:/Users/yakuno/Projects/r3f-perf",
"demo": "portal:demo",
"react-three-next": "portal:/Users/yakuno/Projects/react-three-next"
}
}