-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "react-palm",
"version": "3.3.8",
"description": "Elm-like architecture for React apps",
"main": "dist/src",
"homepage": "https://github.com/btford/react-palm",
"scripts": {
"build": "rm -rf dist && babel src --out-dir dist && flow-copy-source -v src/ dist && cp package.json ./dist && cp LICENSE.md ./dist",
"test": "jest",
"precommit": "pretty-quick --staged"
},
"keywords": [
"react",
"redux",
"elm",
"tasks",
"side-effects"
],
"author": "Brian Ford <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/btford/react-palm.git"
},
"license": "MIT",
"dependencies": {
"function.prototype.name": "^1.1.0",
"react-dom": "^16.4.2",
"react-reconciler": "^0.12.0",
"react-test-renderer": "^16.4.2"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.4.0",
"@babel/preset-env": "7.4.2",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"flow-bin": "0.95.1",
"flow-copy-source": "^1.3.0",
"husky": "^0.14.3",
"jest": "^24.5.0",
"prettier": "1.16.4",
"pretty-quick": "^1.4.1",
"react": "^16.4.2",
"redux": "4.0.1",
"sinon": "^1.17.4"
},
"peerDependencies": {
"enzyme": "^3.6.0",
"enzyme-adapter-utils": "^1.13.0",
"react": "^16.4.1",
"react-test-renderer": "^16.4.1"
}
}