forked from guggu-git/rest-reducer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.67 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.67 KB
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": "@guggugit/rest-reducer",
"version": "1.0.2-alpha.10",
"description": "Restfull reducer for redux",
"main": "distribution/index.js",
"module": "distribution/index.js",
"repository": "git@github.com:guggu-git/rest-reducer.git",
"author": "Sandeep Gunduboyina <guggu.git@gmail.com>",
"license": "MIT",
"prettier": "@guggugit/prettier-config",
"peerDependencies": {
"query-string": "^6.2.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux": "^4.0.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"@guggugit/eslint-config": "1.0.0",
"@guggugit/prettier-config": "1.0.0",
"babel-eslint": "10.0.1",
"babel-loader": "^8.0.4",
"babel-preset-react-app-babel-7": "^4.0.2-0",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jsx-a11y": "6.3.0",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.4",
"husky": "1.3.1",
"install-peers-cli": "^2.2.0",
"lint-staged": "8.1.6",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"rollup": "^0.68.0",
"rollup-plugin-babel": "^4.1.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.0"
},
"scripts": {
"test": "jest --watch",
"lint": "eslint test",
"build": "npm run clean && BABEL_ENV=production rollup -c",
"buildwatch": "npm run clean && BABEL_ENV=production rollup -c -w",
"precommit": "lint-staged",
"prepublishOnly": "npm run build",
"prepare": "install-peers",
"clean": "rimraf distribution"
}
}