-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.55 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
{
"name": "@vaadin/hilla-flow-common-frontend",
"private": true,
"description": "Frontend code shared by Vaadin Flow and Hilla",
"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": "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/flow-hilla-common"
},
"author": "Vaadin Ltd",
"license": "Apache-2.0",
"devDependencies": {
"@nx/js": "^20.3.0",
"concurrently": "^9.1.0",
"cssnano": "^7.0.6",
"esbuild": "^0.24.0",
"eslint": "^8",
"eslint-config-vaadin": "^1.0.0-alpha.28",
"eslint-plugin-tsdoc": "^0.4.0",
"glob": "^11.0.0",
"lint-staged": "^15.2.11",
"magic-string": "^0.30.17",
"micromatch": "^4.0.8",
"nx": "^20.3.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^3.0.2"
}
}