-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.99 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.99 KB
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
{
"name": "adapt-root",
"description": "Monorepo for Unbounded Adapt",
"license": "Apache-2.0",
"homepage": "https://github.com/unboundedsystems/adapt#readme",
"author": "Unbounded Systems",
"contributors": [
{
"name": "Manish Vachharajani",
"email": "manishv@unbounded.systems",
"url": "https://twitter.com/mvachhar"
},
{
"name": "Mark Terrel",
"email": "mark@unbounded.systems",
"url": "https://twitter.com/mterrel"
}
],
"repository": "unboundedsystems/adapt",
"bugs": {
"url": "https://gitlab.com/unboundedsystems/adapt/issues"
},
"private": true,
"workspaces": {
"packages": [
"core",
"cloud",
"cli",
"dom-parser",
"scripts",
"systemtest",
"testutils",
"utils"
],
"nohoist": [
"**/@types/chai",
"**/@types/chai-as-promised"
]
},
"devDependencies": {
"@unboundedsystems/api-documenter": "7.6.1-unb1",
"@unboundedsystems/api-extractor": "7.6.1-unb1",
"cross-env": "7.0.2",
"doctoc": "1.4.0",
"lint-staged": "10.5.2",
"markdown-clitest": "0.5.1",
"nyc": "15.1.0",
"semver": "7.3.2",
"tslint": "5.20.1",
"typescript": "4.0.5"
},
"scripts": {
"copyright-fix-staged": "lint-staged --config config/lint-staged-fix.json && printf \"\n\nYou may need to 'git add' any updated files.\n\n\"",
"precommit": "lint-staged --config config/lint-staged-fix.json",
"prepublishOnly": "make build"
},
"//resolutions": {
"@graphql-tools/prisma-loader": "Pinned at 6.2.1 due to deps requiring Node >= 10.17",
"graphql-request": "Pinned at 3.0.0 due to deps requiring Node >= 10.17"
},
"resolutions": {
"@graphql-tools/prisma-loader": "6.2.1",
"graphql-request": "3.0.0"
}
}