forked from brimdata/zui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "zui-monorepo",
"version": "0.0.0",
"license": "MIT",
"private": true,
"dependencies": {
"@swc/helpers": "~0.4.11",
"tslib": "^2.3.0"
},
"scripts": {
"set-version": "node tools/scripts/version.mjs",
"build-affected": "nx affected --target=build",
"build": "nx run-many -t build --all",
"lint": "nx run-many -t lint --all --exclude zui-player",
"test": "nx run-many -t test --all --exclude zui-player --skip-nx-cache",
"start": "nx start zui",
"e2e": "NODE_ENV=production nx test zui-player",
"e2e:ci": "NODE_ENV=production nx ci zui-player"
},
"devDependencies": {
"@nx-go/nx-go": "^2.7.0",
"@nx/esbuild": "^16.10.0",
"@nx/eslint-plugin": "16.10.0",
"@nx/jest": "16.10.0",
"@nx/js": "16.10.0",
"@nx/linter": "16.10.0",
"@nx/workspace": "16.10.0",
"@swc/cli": "~0.1.55",
"@swc/core": "^1.2.173",
"@swc/jest": "0.2.20",
"@types/jest": "^29.4.0",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"esbuild": "^0.17.12",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^29.4.1",
"nx": "16.10.0",
"open-cli": "^7.2.0",
"prettier": "^2.6.2",
"serve": "^14.2.0",
"ts-jest": "^29.0.5",
"ts-node": "10.9.1",
"typescript": "5.1.5"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"apps/*"
]
}