-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.75 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
{
"private": true,
"author": "KIELER <[email protected]>",
"license": "EPL-2.0",
"bugs": {
"url": "https://github.com/kieler/klighd-vscode/issues"
},
"homepage": "https://rtsys.informatik.uni-kiel.de/kieler",
"engines": {
"node": "16.x",
"yarn": "1.x"
},
"workspaces": [
"applications/*",
"packages/*"
],
"scripts": {
"clean": "lerna run clean --parallel",
"lint": "lerna run lint --parallel",
"lint-fix": "lerna run lint-fix --parallel",
"prebuild": "yarn clean",
"build": "lerna run build",
"watch": "lerna run watch --parallel",
"package": "lerna run build && lerna run package --parallel",
"prettier": "prettier --write applications/**/src/ applications/klighd-vscode/src-webview/ packages/**/src/ packages/**/styles/ packages/**/test/",
"distribute": "lerna run build && lerna run distribute --parallel",
"test": "mocha --require ts-node/register --require ignore-styles --recursive \"packages/**/test/**/*.{ts,tsx}\""
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"chai": "^4.3.10",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"ignore-styles": "5.0.1",
"lerna": "^4.0.0",
"mocha": "^10.2.0",
"prettier": "3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}