-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.81 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
{
"name": "feathers-react",
"version": "0.5.5",
"description": "A feathers-aware component",
"author": "silvestreh",
"license": "MIT",
"repository": "silvestreh/feathers-react",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"pretest": "npm run lint",
"test": "cross-env CI=1 react-scripts test --env=jsdom --coverage",
"test:watch": "react-scripts test --env=jsdom --coverage --watch",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "npm run build",
"release:patch": "npm test && npm version patch && git push origin --tags && npm publish",
"release:minor": "npm test && npm version minor && git push origin --tags && npm publish",
"release:major": "npm test && npm version major && git push origin --tags && npm publish",
"lint": "eslint src/ --fix"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/test.js",
"!src/setupTests.js",
"!src/test-client.js",
"!src/index.js",
"!src/languages.js"
]
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=16",
"react-dom": ">=16"
},
"semistandard": {
"parser": "babel-eslint",
"env": {
"es2017": true,
"es6": true,
"jest": true
}
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-function-bind": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@faker-js/faker": "^7.5.0",
"@feathersjs/client": "^4.5.15",
"@svgr/rollup": "^6.3.1",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.24.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"lodash.times": "^4.3.2",
"react": ">=16",
"react-dom": ">=16",
"react-scripts": "^5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-url": "^3.0.1"
},
"files": [
"dist"
],
"dependencies": {
"lodash.isequal": "^4.5.0",
"lodash.omit": "^4.5.0",
"rc-pagination": "^3.1.17",
"sift": "^16.0.0"
}
}