forked from vaadin/hilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "@hilla/hilla",
"private": true,
"description": "Hilla frontend & NodeJS code",
"main": "index.js",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0",
"npm": ">=7"
},
"workspaces": [
"packages/ts/*"
],
"scripts": {
"check": "concurrently npm:lint npm:typecheck",
"bootstrap": "lerna bootstrap",
"build": "lerna run build --include-dependencies",
"lint": "lerna run lint",
"postinstall": "npm run bootstrap",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage",
"typecheck": "lerna run typecheck"
},
"repository": {
"type": "git",
"url": "github.com/vaadin/hilla"
},
"author": "Vaadin Ltd",
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"@web/dev-server-esbuild": "^0.2.14",
"@web/dev-server-import-maps": "^0.0.6",
"@web/test-runner-chrome": "^0.10.2",
"@web/test-runner-puppeteer": "^0.10.5",
"concurrently": "^6.2.1",
"esbuild": "^0.15.10",
"eslint": "^7.32.0",
"eslint-config-vaadin": "^0.4.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"lerna": "^4.0.0",
"lint-staged": "^13.0.3",
"meow": "^10.1.5",
"micromatch": "^4.0.4",
"prettier": "^2.7.1",
"simple-git-hooks": "^2.6.1",
"typescript": "^4.8.4"
}
}