-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
113 lines (113 loc) · 3.5 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-rocketjump",
"version": "3.0.0",
"description": "Rocketjump your react! Manage state and side effects like a breeze",
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"repository": "https://github.com/inmagik/react-rocketjump",
"authors": [
"Giovanni Fumagalli <[email protected]>",
"Mauro Bianchi <[email protected]>",
"Alberto Osio <[email protected]>"
],
"files": [
"lib",
"logger",
"plugins"
],
"scripts": {
"run-example": "npm-run-all -p dev-example fake-server",
"dev-example": "webpack-dev-server",
"fake-server": "node scripts/initExampleDB.js && json-server --watch ./example/db.json --port 9001 --delay 500",
"format": "prettier --write \"{example,src,__{tests,mocks}__}/**/*.js\"",
"test-types": "tsc --project tsconfig.test.json",
"test": "jest",
"test-coverage": "jest --coverage",
"codecov": "jest --coverage && codecov",
"prebuild": "rimraf lib && node scripts/make-plugin-defs.js",
"build": "rollup -c && tsc --project tsconfig.build.json",
"types": "tsc --project tsconfig.build.json"
},
"eslintConfig": {
"extends": "react-app"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/inmagik/react-rocketjump/issues"
},
"keywords": [
"react",
"hooks",
"state",
"side effects",
"rocketjump"
],
"dependencies": {
"@babel/runtime": "^7.18.9",
"hoist-non-react-statics": "^3.3.0",
"object-path-immutable": "^4.1.0",
"query-string": "^6.7.0",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@babel/core": "^7.12.17",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.17",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.0.3",
"@types/hoist-non-react-statics": "^3.3.1",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.1.0",
"babel-plugin-macros": "^2.8.0",
"babel-plugin-preval": "^5.0.0",
"classnames": "^2.2.6",
"codecov": "^3.7.2",
"css-loader": "^4.2.2",
"eslint": "^7.5.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"jest": "^26.4.2",
"json-server": "^0.16.1",
"memoize-one": "^5.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.39.0",
"style-loader": "^1.2.1",
"superagent": "^6.1.0",
"typescript": "^4.2.3",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"{example,src,__{tests,mocks}__}/**/*.js\""
}
}
}