-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
90 lines (90 loc) · 2.74 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
{
"name": "react-recollect",
"version": "5.2.3",
"description": "Simple state management for react",
"keywords": [
"flux",
"react",
"redux",
"state",
"state management"
],
"bugs": "https://github.com/davidgilbertson/react-recollect/issues",
"repository": {
"type": "git",
"url": "https://github.com/davidgilbertson/react-recollect"
},
"license": "MIT",
"author": "David Gilbertson",
"main": "index.cjs.js",
"module": "index.esm.js",
"unpkg": "dist/umd/index.production.js",
"types": "dist/types/index.d.ts",
"files": [
"index.*",
"dist"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"check:all": "npm run build && npm run lint && npm run test:ci",
"lint": "eslint src tests --fix --cache --ext js,ts,tsx --max-warnings=0",
"nodeTest": "node ./tests/integration/nodeJs.js",
"prepublishOnly": "npm run check:all",
"readme:toc": "doctoc README.md",
"test": "npm run nodeTest && jest ./test --watch",
"test:ci": "npm run nodeTest && jest ./test --ci",
"preversion": "npm run check:all"
},
"dependencies": {
"@types/prop-types": "^15.7.3",
"hoist-non-react-statics": "^3.3.0",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.1",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.3",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/testing-library__dom": "^7.0.0",
"@types/testing-library__jest-dom": "^5.0.2",
"@types/testing-library__react": "^9.1.3",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"doctoc": "^1.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.4.0",
"jest": "^25.1.0",
"lodash": "^4.17.21",
"prettier": "^2.0.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rollup": "^2.2.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"size-plugin": "^2.0.1",
"source-map-loader": "^0.2.4",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react-dom": ">=15.3",
"react": ">=15.3"
}
}