-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
83 lines (83 loc) · 2.33 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
{
"name": "@elide-dev/framework",
"version": "1.0.0-alpha7",
"private": true,
"lint-staged": {
"not-packages/*": "pnpm exec prettier --ignore-unknown"
},
"browserslist": [
"last 3 chrome versions",
"last 3 firefox versions",
"last 3 edge versions",
"last 3 safari versions"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"workspaces": [
"packages/base",
"packages/core",
"packages/frontend",
"packages/graalvm",
"packages/graalvm-js",
"packages/graalvm-react",
"packages/model",
"packages/rpc",
"packages/test",
"packages/cli",
"site/docs/content",
"tools/scripts",
"tools/plugin/gradle-plugin"
],
"dependencies": {
"browserslist": "4.23.0",
"cssnano": "6.0.3",
"google-protobuf": "3.21.2",
"jszip": "3.10.1",
"postcss": "8.4.35",
"preact": "10.19.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.3.3",
"web-streams-polyfill": "3.3.2"
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.2",
"@mdx-js/esbuild": "3.0.1",
"@prettier/plugin-xml": "3.3.1",
"@types/google-protobuf": "3.15.12",
"@types/node": "20.11.19",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.1",
"commitlint": "18.6.1",
"esbuild": "0.20.0",
"eslint": "8.56.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"postcss-cli": "11.0.0",
"prettier": "3.2.5",
"prettier-plugin-java": "2.5.0",
"prettier-plugin-properties": "0.3.0",
"prettier-plugin-sh": "0.14.0",
"prettier-plugin-toml": "2.0.1",
"readable-stream": "4.5.2"
},
"resolutions": {
"jszip": "3.10.1",
"node-fetch": "3.3.2"
},
"scripts": {
"build": "make build",
"test": "make test",
"upgrade-node": "yarn upgrade-interactive",
"upgrade-gradle": "gradle-upgrade-interactive",
"prepare": "husky install",
"prettier": "prettier",
"husky": "husky",
"lint": "prettier --write . --plugin=prettier-plugin-sh --plugin=prettier-plugin-toml --plugin=prettier-plugin-properties --plugin=prettier-plugin-java",
"lint:check": "prettier --check . --plugin=prettier-plugin-sh --plugin=prettier-plugin-toml --plugin=prettier-plugin-properties --plugin=prettier-plugin-java"
}
}