-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
74 lines (74 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@vaadin/hilla",
"private": true,
"description": "Hilla frontend & NodeJS code",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=16.19.0",
"npm": ">=9"
},
"workspaces": [
"packages/ts/*"
],
"scripts": {
"clean:build": "nx run-many -t clean:build --all --output-style stream",
"check": "nx run-many -t lint,typecheck --all --output-style stream",
"build": "tsx scripts/prepare/index.ts && nx run-many -t build --all --output-style stream",
"build:nocache": "npm run build",
"lint": "nx run-many -t lint --all --output-style stream",
"lint:fix": "nx run-many -t lint:fix --all --output-style stream",
"test": "nx run-many -t test --all --output-style stream",
"test:coverage": "nx run-many -t test:coverage --all --output-style stream",
"typecheck": "nx run-many -t typecheck --all --output-style stream"
},
"repository": {
"type": "git",
"url": "github.com/vaadin/hilla"
},
"author": "Vaadin Ltd",
"license": "Apache-2.0",
"overrides": {
"esbuild": "$esbuild",
"prettier": "$prettier"
},
"devDependencies": {
"@nx/js": "^18.0.4",
"@preact/signals-react-transform": "^0.3.1",
"@types/karma": "^6.3.8",
"@types/node": "^20.11.19",
"@vaadin/react-components": "24.6.0-beta1",
"@vitejs/plugin-react": "^4.3.1",
"chai-dom": "^1.12.0",
"compare-versions": "^6.1.0",
"concurrently": "^8.2.2",
"cssnano": "^6.0.3",
"esbuild": "^0.20.1",
"eslint": "^8.56.0",
"eslint-config-vaadin": "1.0.0-alpha.18",
"eslint-plugin-mocha": "^10.3.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tsdoc": "^0.2.17",
"glob": "^10.3.10",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-mocha": "^2.0.1",
"karma-spec-reporter": "^0.0.36",
"karma-viewport": "^1.0.9",
"karma-vite": "^1.0.5",
"lint-staged": "^15.2.2",
"magic-string": "^0.30.7",
"meow": "^13.2.0",
"micromatch": "^4.0.5",
"mocha": "^10.3.0",
"nx": "^18.0.4",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.9.0",
"sync-request": "^6.1.0",
"tsx": "^4.16.2",
"typescript": "5.6.2",
"vite": "5.4.6"
}
}