-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
51 lines (51 loc) · 1.74 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
{
"license": "MIT",
"scripts": {
"postinstall": "cd packages/vscode-host && yarn",
"watch": "pnpm --filter './packages/**' watch",
"build": "pnpm --filter './packages/**' build && cd packages/vscode-host && yarn build",
"serve": "run-p serve:**",
"serve:host": "cd packages/vscode-host && yarn serve",
"serve:entrypoint": "pnpm --filter './packages/entrypoint' serve",
"copy-and-serve": "cd packages/vscode-host && yarn copy-and-serve",
"lint": "eslint --ext .ts ./packages/*/src/**/*.ts",
"lint:fix": "pnpm lint -- --fix",
"prepare-deploy": "cp ./vercel.json ./packages/vscode-host/dist && cp ./vercel.json ./packages/entrypoint/dist",
"test": "mocha",
"check": "pnpm test && pnpm lint"
},
"devDependencies": {
"@types/jsdom": "^16.2.14",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.16.2",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"assert": "^2.0.0",
"earljs": "^0.1.12",
"esbuild": "^0.14.10",
"esbuild-register": "^3.3.2",
"typescript-register": "npm:esbuild-register@^3.3.2",
"eslint": "^7",
"eslint-config-typestrict": "^1.0.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.10.0",
"eslint-plugin-unused-imports": "^1.1.5",
"jsdom": "^19.0.0",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"process": "^0.11.10",
"serve": "^13.0.2",
"ts-loader": "^9.2.5",
"typescript": "^4.5.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
},
"engines": {
"node": "^18.x",
"pnpm": ">=7.0.0"
}
}