-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
106 lines (106 loc) · 3.53 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@cognite/sdk-monorepo",
"description": "Javascript client library for Cognite SDK",
"contributors": [
"Fredrik Anfinsen <[email protected]>",
"Ivan Polomanyi <[email protected]>",
"Håvard Krogstie <[email protected]>",
"Martin Røed <[email protected]>",
"Emil Sandstø <[email protected]>",
"Anders Øen Fylling <[email protected]>"
],
"license": "Apache-2.0",
"repository": "cognitedata/cognite-sdk-js",
"homepage": "https://github.com/cognitedata/cognite-sdk-js#readme",
"private": true,
"keywords": [
"cognite",
"sdk",
"typescript"
],
"workspaces": [
"packages/**",
"samples/**"
],
"scripts": {
"g:rollup": "cd $INIT_CWD && rollup",
"g:vitest": "cd $INIT_CWD && vitest",
"g:es-check": "cd $INIT_CWD && es-check",
"g:biome": "cd $INIT_CWD && biome",
"g:typedoc": "cd $INIT_CWD && typedoc",
"g:tsc": "cd $INIT_CWD && tsc",
"allsdk": "lerna run --ignore \"*-sample\"",
"allsamples": "lerna run --scope \"*-sample\"",
"clean": "lerna run clean && rm -rf docs/ coverage/",
"test": "yarn allsdk test --stream",
"test:codecov": "vitest run --coverage",
"lint": "yarn g:biome ci",
"lint:fix": "yarn g:biome lint --fix && yarn g:biome format --fix && yarn g:biome check --fix",
"commit": "yarn lint:fix --since master && yarn test --since master && git commit -a && git push",
"build": "yarn allsdk build --stream",
"watch": "yarn allsdk watch --parallel",
"docs": "yarn allsdk docs --stream",
"docs:bundle": "rm -rf docs/ && yarn allsdk docs:bundle --stream && touch docs/.nojekyll",
"validateDocLinks": "find . -name \\*.md -not -path '*/node_modules/*' -print0 | xargs -0 -n1 yarn markdown-link-check -c ./markdownlint.json",
"test-snippets": "yarn allsdk test-snippets --stream",
"test-samples": "SKIP_PREFLIGHT_CHECK=true yarn allsamples test --stream",
"codegen": "ts-node packages/codegen/src/cli.ts"
},
"devDependencies": {
"@azure/msal-node": "^1.14.5",
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@rollup/plugin-alias": "^4.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/es6-promise": "^3.3.0",
"@types/lodash": "^4.14.158",
"@types/nock": "^10.0.3",
"@types/node": "^14.0.24",
"@types/yargs": "^17.0.10",
"@vitest/coverage-v8": "^2.0.5",
"axios": "^1.0.0",
"es-check": "^7.0.0",
"husky": "^3.0.2",
"lerna": "^6.0.0",
"markdown-link-check": "^3.10.3",
"nock": "13.3.1",
"openapi-types": "^11.0.1",
"rollup": "^2.22.2",
"swagger-typescript-api-nextgen": "^10.0.1",
"tmp-promise": "^3.0.3",
"ts-node": "^10.8.0",
"typedoc": "^0.19.2",
"typescript": "^3.9",
"vitest": "^2.0.5",
"yargs": "^17.5.1"
},
"resolutions": {
"loader-utils": "^1.4.2",
"node-fetch": "^2.6.8",
"node-forge": "^1.0.0",
"ansi-html": "^0.0.8",
"browserslist": "^4.16.5",
"eta": "^2.0.0",
"ejs": "^3.1.7",
"glob-parent": "^5.1.2",
"immer": "^9.0.6",
"json-schema": "^0.4.0",
"jsonwebtoken": "^9.0.0",
"markdown-link-extractor": "^3.0.2",
"minimatch": "^3.0.5",
"node-notifier": "8.0.1",
"nth-check": "^2.0.1",
"qs": "^6.5.3",
"set-value": "^2.0.1",
"shell-quote": "^1.7.3",
"is-svg": "^4.3.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"packageManager": "[email protected]"
}