-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.32 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": "@relax-js/react-relax",
"version": "0.0.8",
"description": "Official React bindings for Relax",
"main": "dist/react-relax.min.js",
"scripts": {
"start": "export NODE_ENV=development; ./scripts/run.dev.js",
"dev": "rollup --config rollup.config.js --watch",
"build": "rollup --config rollup.config.js --environment NODE_ENV:production",
"app:dev": "webpack-dev-server --open --mode='development' --hotOnly --config app/webpack.config.js",
"app:build": "yarn build --config app/webpack.config.js",
"prepublish": "rm -rf ./dist && yarn build",
"test": "jest --watch --config=jest.config.json"
},
"author": "Jason McNeal",
"license": "MIT",
"peerDependencies": {
"react": ">=16.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/relax-js/react-relax"
},
"keywords": [
"relax",
"react-relax",
"state",
"management",
"promise",
"async"
],
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-react-jsx": "^7.1.6",
"@babel/preset-env": "^7.0.0",
"@relax-js/relax": "^0.0.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.20",
"css-loader": "^1.0.0",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.3.11",
"reselect": "^4.0.0",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-uglify": "^6.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.18.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.9"
}
}