This repository has been archived by the owner on Oct 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.55 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
{
"name": "rescope-spells",
"version": "16.1.0",
"description": "Work in progress collection of chainable stores decorators for rescope",
"repository": "https://github.com/rscopes/rescope-spells.git",
"license": "MIT",
"main": "dist/RSpells.js",
"author": "Nathan Braun <n8tz.js@gmail.com>",
"wpInherit": {
"default": {
"rootFolder": "src",
"basedOn": "Component",
"vars": {
"rootAlias": "RSpells",
"externals": true,
"production": true,
"webpackPatch": {}
},
"extend": [
"wpi-react-hmr-ssr"
]
},
"staging": {
"rootFolder": "src",
"basedOn": "Component",
"vars": {
"rootAlias": "RSpells",
"externals": true,
"webpackPatch": {}
},
"extend": [
"wpi-react-hmr-ssr"
]
},
"samples": {
"rootFolder": "src",
"basedOn": "ComponentSamples",
"vars": {
"rootAlias": "RSpells",
"webpackPatch": {}
},
"extend": [
"wpi-react-hmr-ssr"
]
}
},
"scripts": {
"build": "wpi && wpi :samples",
"staging": "wpi :staging",
"dev": "wpi-dev-server :samples --hot",
"runBrowser": "start http://localhost:8080"
},
"peerDependencies": {
"react-dom": "^16.3.2",
"prop-types": "^15.5.10",
"react": "^16.3.2"
},
"dependencies": {
"is": "^3.2.1",
"rescope": "^4.6.1",
"shortid": "^2.2.8"
},
"devDependencies": {
"react-scopes": "^1.2.0",
"wpi-react-hmr-ssr": "^1.1.10",
"webpack-inherit": "^1.4.10"
}
}