-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 995 Bytes
/
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
{
"private": true,
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/tcp-port-used": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.16.0",
"hamjest": "^3.7.3",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.2.0",
"tcp-port-used": "^1.0.2",
"ts-mockito": "^2.6.1",
"typescript": "^4.8.4"
},
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
"build:all": "cd zetasql && npm run build:all && cd ../snowflake && npm run build:all",
"test": "mocha",
"lint": "eslint --cache --no-fix --ext .ts **/src",
"lint:fix": "eslint --cache --fix --ext .ts src",
"prepare": "npx husky install"
},
"workspaces": [
"zetasql",
"snowflake"
]
}