-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
63 lines (63 loc) · 2.53 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
{
"name": "solidity-language-server-monorepo",
"private": true,
"workspaces": [
"client",
"server",
"coc",
"test/e2e",
"test/protocol"
],
"homepage": "https://hardhat.org/hardhat-vscode/",
"repository": {
"type": "git",
"url": "https://github.com/NomicFoundation/hardhat-vscode"
},
"bugs": {
"url": "https://github.com/NomicFoundation/hardhat-vscode/issues"
},
"scripts": {
"build": "tsc -b ./client/tsconfig.json && tsc -b ./server/tsconfig.build.json && tsc -b ./coc/tsconfig.json && tsc -b",
"watch": "concurrently -n client,server \"tsc -b -w ./client/tsconfig.json\" \"tsc -b -w ./server/tsconfig.build.json\"",
"test:unit": "npm -w server run test",
"test:protocol": "npm -w test/protocol run test",
"test:e2e": "npm run build && node ./out/test/runTests.js",
"test": "npm run test:unit && npm run test:protocol && npm run test:e2e",
"test:coverage": "npm -w server run test:coverage",
"test:codecov": "npm -w server run test:codecov",
"lint": "npm run prettier -- --check && npm run eslint && npm -w client run lint && npm -w server run lint && npm -w coc run lint && npm -w test/protocol run lint",
"lint:fix": "npm run prettier -- --write && npm run eslint -- --fix && npm run -w client lint:fix && npm run -w server lint:fix && npm run -w coc lint:fix && npm run -w test/protocol lint:fix",
"prettier": "prettier *.md *.json \"{docs,syntaxes,.github,.vscode}/**/*.{md,yml,json}\"",
"eslint": "eslint ./test/**/*.ts",
"clean": "rimraf ./dist ./out && npm -w client run clean && npm -w server run clean",
"generate-readmes": "ts-node scripts/interpolateReadmes.ts",
"prepackage": "npm run generate-readmes",
"package": "npm -w client run package",
"prefullcheck": "npm run clean",
"fullcheck": "npm run lint && npm run build && npm run test && npm run package"
},
"devDependencies": {
"@changesets/cli": "2.21.1",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/module-alias": "2.0.1",
"@types/vscode": "^1.86",
"@typescript-eslint/eslint-plugin": "5.8.0",
"@typescript-eslint/parser": "5.8.0",
"@vscode/test-electron": "2.3.8",
"@vscode/vsce": "2.17.0",
"concurrently": "7.1.0",
"dotenv": "16.0.3",
"esbuild": "0.14.23",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.26.0",
"glob": "^7.1.7",
"mocha": "^9.1.1",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.4.3",
"wsrun": "5.2.4"
}
}