-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.4 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
90
91
92
93
94
95
{
"repository": "[email protected]:brucou/react-state-driven.git",
"name": "react-state-driven",
"sideEffects": false,
"author": "brucou",
"version": "0.11.1",
"license": "MIT",
"description": "A state machine abstraction for React",
"main": "dist/react-state-driven.js",
"module": "dist/react-state-driven.es.js",
"files": [
"DISCLAIMER",
"dist",
"pkg"
],
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__tests__/**/*",
"tests/**/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"scripts": {
"build": "rollup -c",
"pack": "pack build",
"prepublish": "npm run build && npm run pack",
"start": "webpack-dev-server --open",
"test": "webpack-dev-server --config tests/webpack.config.js --open"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"babel-loader": "^8.1.0",
"dom-testing-library": "^3.19.4",
"fetch-jsonp": "^1.1.3",
"flipping": "1.1.0",
"fp-rosetree": "^0.6.2",
"html-parse-stringify": "^1.0.3",
"html-webpack-plugin": "^3.2.0",
"hyperscript-helpers": "3.0.3",
"idx": "^2.5.6",
"immer": "1.7.4",
"json-patch-es6": "^2.0.9",
"prettier": "^1.19.1",
"pretty-format": "^23.6.0",
"ramda": "^0.26.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "4.3.4",
"react-hyperscript": "3.2.0",
"react-test-renderer": "^16.13.1",
"react-testing-library": "^5.9.0",
"rimraf": "^2.7.1",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-terser": "^1.0.1",
"rxjs": "^6.5.5",
"rxjs-compat": "^6.5.5",
"sinon": "^7.5.0",
"snowpack": "^2.3.1",
"superagent": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@pika/pack": "^0.5.0",
"kingly": "^0.28.3",
"emitonoff": "^0.1.0"
},
"peerDependencies": {
"react": ">=16.3"
}
}