-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.87 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
{
"name": "@blackbox-vision/ra-data-jsonapi-microservices",
"version": "1.0.2",
"description": "React Admin data provider with support for microservices using JSON API",
"main": "index.js",
"scripts": {
"clean": "rimraf pkg",
"publish": "pika publish",
"build": "npm run clean && pika build",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlackBoxVision/ra-data-jsonapi-microservices.git"
},
"keywords": [
"json-api",
"react-admin",
"data-provider",
"microservices"
],
"author": "Jonatan Salas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlackBoxVision/ra-data-jsonapi-microservices/issues"
},
"homepage": "https://github.com/BlackBoxVision/ra-data-jsonapi-microservices#readme",
"peerDependencies": {
"query-string": "^6.12.1",
"ra-core": "^3.5.2"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"prettier": "^2.0.5",
"query-string": "^6.12.1",
"ra-core": "^3.5.2",
"rimraf": "^3.0.2",
"typescript": "^3.9.3"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}