-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.75 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
{
"name": "croods",
"version": "3.1.1",
"description": "CRUD made easy. REST data layer abstraction library.",
"author": "SeasonedSoftware",
"license": "MIT",
"repository": "SeasonedSoftware/croods",
"main": "dist/croods.js",
"module": "dist/croods.esm.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"lint": "run-p lint:*",
"lint:eslint": "eslint ./",
"lint:prettier": "prettier --check \"{**/*.js,**/*.jsx,**/*.ts,**/*.tsx}\"",
"lint:types": "./node_modules/.bin/tsc --project tsconfig.json --noEmit",
"test": "jest --watch",
"test:ci": "cross-env CI=1 jest",
"build": "npm run build:types && npm run build:js",
"build:js": "rollup -c",
"build:types": "./node_modules/.bin/tsc --emitDeclarationOnly",
"release:login": "npm adduser",
"release": "./release",
"start": "rollup -c -w",
"prepare": "yarn run build",
"predeploy": "yarn build && cd example/ && yarn build && cd ../",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"axios": "^0.21.1",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/helper-call-delegate": "^7.12.13",
"@babel/helper-define-map": "^7.14.5",
"@babel/helper-regex": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.0",
"@types/lodash": "^4.14.170",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"axios": "^0.21.1",
"babel-jest": "^27.0.6",
"cross-env": "^7.0.3",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"gh-pages": "^3.2.3",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"rollup": "^2.52.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"files": [
"dist"
],
"dependencies": {
"@babel/runtime": "^7.14.6",
"lodash-humps": "^3.1.6"
},
"resolutions": {
"@types/react": "^17.0.6"
}
}