-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.28 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
{
"name": "kibana_nx",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"generate": "nx generate @kbn/nx:package --dry-run",
"generate-pkg": "nx generate @kbn/nx:package",
"boilerplate": "node tools/boilerplate && nx run-many --target=boilerplate",
"bootstrap": "node tools/boilerplate && nx run-many --target=typecheck && nx run-many --target=build",
"lint": "nx run-many --target=lint",
"typecheck": "node tools/boilerplate && nx run-many --target=typecheck",
"affected:boilerplate": "node tools/boilerplate && nx affected --target=boilerplate",
"affected:lint": "nx affected --target=lint",
"affected:typecheck": "node tools/boilerplate && nx affected --target=typecheck"
},
"private": true,
"dependencies": {},
"devDependencies": {
"@kbn/nx": "link:packages/kbn-nx",
"@nrwl/cli": "14.8.3",
"@nrwl/devkit": "14.8.3",
"@nrwl/eslint-plugin-nx": "14.8.3",
"@nrwl/js": "14.8.3",
"@nrwl/linter": "14.8.3",
"@nrwl/nx-plugin": "^14.8.3",
"@nrwl/workspace": "14.8.3",
"eslint": "^8.25.0",
"execa": "^5.1.1",
"jsonc-eslint-parser": "^2.1.0",
"nx": "14.8.3",
"prettier": "^2.6.2",
"typescript": "~4.8.2",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1"
}
}