-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "zensql",
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"scripts",
"tests"
],
"keywords": [
"sql",
"typescript",
"ts"
],
"repository": "[email protected]:etienne-dldc/zensql.git",
"author": "Etienne Dldc <[email protected]>",
"scripts": {
"build": "lerna run build --stream",
"test": "lerna run test --stream",
"typecheck": "lerna exec --stream --scope '{@zensql,@zensql-example}/**' 'tsc --noEmit'",
"norm": "lerna exec --stream -- '$LERNA_ROOT_PATH/node_modules/.bin/ts-node --project $LERNA_ROOT_PATH/scripts/tsconfig.json $LERNA_ROOT_PATH/scripts/src/norm.ts'",
"pub": "yarn build && yarn test && lerna publish",
"lint": "eslint ."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.5",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
}
}