-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.22 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
{
"private": true,
"name": "@infuseai/admin",
"version": "1.0.0",
"description": "Graphql API and hosting cms pages",
"license": "Apache-2.0",
"author": "InfuseAI <[email protected]>",
"homepage": "https://github.com/InfuseAI/primehub-console#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/InfuseAI/primehub-console"
},
"bugs": {
"url": "https://github.com/InfuseAI/primehub-console/issues"
},
"main": "index.js",
"scripts": {
"prepare": "husky install"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"apollo-client": "2.4.13",
"apollo-boost": "0.1.22",
"**/**/puppeteer": "^1.13.0",
"**/**/elliptic": "^6.5.3",
"**/**/serialize-javascript": "^3.1.0",
"**/**/yargs-parser": "^20.2.7",
"**/**/websocket-extensions": "^0.1.4"
},
"devDependencies": {
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"prettier-package-json": "^2.5.0"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"lint-staged": {
"*.{md,json,yml}": [
"prettier --write"
],
"package.json": [
"prettier-package-json --write"
]
}
}