forked from dethcrypto/dethcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.26 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
{
"license": "MIT",
"scripts": {
"postinstall": "cd packages/vscode-host && yarn",
"watch": "pnpm watch --filter ./packages",
"build": "pnpm build --filter ./packages && cd packages/vscode-host && yarn build",
"serve": "cd packages/vscode-host && yarn 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"
},
"devDependencies": {
"@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",
"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",
"mocha": "^9.1.3",
"process": "^0.11.10",
"serve": "^13.0.2",
"ts-loader": "^9.2.5",
"ts-node": "^10.4.0",
"typescript": "^4.5.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
}
}