-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
103 lines (103 loc) · 3.07 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
{
"name": "@vaadin/hilla",
"private": true,
"description": "Hilla frontend & NodeJS code",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=20.0.0",
"npm": ">=9.6"
},
"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",
"vite": "$vite"
},
"devDependencies": {
"@nx/js": "20.4.0",
"@open-wc/testing": "4.0.0",
"@preact/signals-react-transform": "0.5.1",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.2.0",
"@testing-library/user-event": "14.6.1",
"@types/atmosphere.js": "2.1.6",
"@types/chai": "5.0.1",
"@types/chai-as-promised": "8.0.1",
"@types/chai-dom": "1.11.3",
"@types/chai-like": "1.1.3",
"@types/deep-equal-in-any-order": "1.0.4",
"@types/js-cookie": "3.0.6",
"@types/node": "22.12.0",
"@types/react": "19.0.8",
"@types/react-dom": "19",
"@types/sinon": "17.0.3",
"@types/sinon-chai": "4.0.0",
"@types/validator": "13.12.2",
"@vaadin/react-components": "24.7.0-alpha8",
"@vitejs/plugin-react": "4.3.4",
"@vitest/browser": "3.0.4",
"@vitest/coverage-v8": "3.0.4",
"@vitest/ui": "3.0.4",
"@web/test-runner": "0.19.0",
"c8": "10.1.3",
"chai": "5.1.2",
"chai-as-promised": "8.0.1",
"chai-dom": "1.12.1",
"chai-like": "1.1.3",
"compare-versions": "6.1.1",
"concurrently": "9.1.2",
"copyfiles": "2.4.1",
"cssnano": "7.0.6",
"deep-equal-in-any-order": "2.0.6",
"esbuild": "0.24.2",
"eslint": "8.57.0",
"eslint-config-vaadin": "1.0.0-alpha.28",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-tsdoc": "0.4.0",
"fetch-mock": "12.2.1",
"glob": "11.0.1",
"lint-staged": "15.4.3",
"magic-string": "0.30.17",
"meow": "13.2.0",
"micromatch": "4.0.8",
"nx": "20.4.0",
"pino": "9.6.0",
"playwright": "1.50.0",
"postcss": "8.5.1",
"prettier": "3.4.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-router": "7.1.3",
"rollup": "4.32.1",
"simple-git-hooks": "2.11.1",
"sinon": "19.0.2",
"sinon-chai": "4.0.0",
"sync-request": "6.1.0",
"tsx": "4.19.2",
"type-fest": "4.33.0",
"typescript": "5.7.3",
"vite": "6.0.11",
"vitest": "3.0.4"
}
}