-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
41 lines (41 loc) · 1.01 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
{
"private": true,
"name": "treact",
"version": "0.1.0",
"devDependencies": {
"lerna": "^2.9.0"
},
"_________": {
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/treact",
"**/@treact/web",
"**/@treact/theme-parser",
"TreactNative/react-native-*",
"TreactNative/react-native-*/**",
"TreactNative/vm-browserify",
"TreactNative/vm-browserify/**"
]
},
"workspaces": {
"packages": [
"packages/theme-parser",
"packages/treact",
"packages/storybook"
]
},
"resolutions": {
"**/worker-loader": "2.0.0"
},
"dependencies": {
"ramda": "^0.25.0"
},
"scripts": {
"reset-modules": "rm -rf node_modules/ yarn.lock packages/*/node_modules",
"reset-yarn": "yarn cache clean",
"reset-rn": "watchman watch-del-all; rm -fr $TMPDIR/react-*; rm -rf $TMPDIR/haste-map-react-native-packager-*",
"reset-cache": "yarn reset-yarn && yarn reset-rn",
"reset": "yarn reset-modules && yarn reset-cache"
}
}