-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·46 lines (46 loc) · 1.35 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
{
"name": "@fusionworks/ra-data-nest-crud",
"version": "1.0.7",
"description": "a data provider for react admin that handles request from nestjsx-crud server",
"main": "dist/index.js",
"scripts": {
"rollup": "rollup",
"watch": "rollup -cw",
"build": "rollup -c",
"postbuild": "node lib/copy_package && node lib/copy_readme",
"patch": "npm version patch -m \"[skip travis] Release version: %s\"",
"prerelease": "npm whoami && npm run patch && npm run build",
"release": "npm publish dist --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FusionWorks/react-admin-nestjsx-crud-dataprovider.git"
},
"keywords": [
"ra",
"react-admin",
"dataprovider",
"data-provider",
"nestjsx/crud"
],
"author": "nzuza",
"license": "ISC",
"devDependencies": {
"eslint": "^6.0.1",
"rollup": "^1.8.0",
"rollup-plugin-commonjs": "^9.2.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-sourcemaps": "^0.4.2"
},
"bugs": {
"url": "https://github.com/FusionWorks/react-admin-nestjsx-crud-dataprovider/issues"
},
"homepage": "https://github.com/FusionWorks/react-admin-nestjsx-crud-dataprovider#readme",
"dependencies": {
"@nestjsx/crud-request": "^4.1.0"
},
"peerDependencies": {
"react-admin": "^2.8.5"
}
}