-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.54 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
{
"name": "kiip",
"private": true,
"keywords": [
"crdt",
"database",
"local",
"p2p",
"ts",
"typescript"
],
"repository": "[email protected]:etienne-dldc/kiip.git",
"author": "Etienne Dldc <[email protected]>",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "pnpm run build -r",
"test": "lerna run --stream --concurrency 1 test",
"typecheck:all": "pnpm recursive exec --filter '@kiip/*' -- pnpx 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'",
"norm:core": "lerna exec --stream --scope '@kiip/core' -- '$LERNA_ROOT_PATH/node_modules/.bin/ts-node --project $LERNA_ROOT_PATH/scripts/tsconfig.json $LERNA_ROOT_PATH/scripts/src/norm.ts'",
"benchmark": "ts-node --files --project ./scripts/tsconfig.json ./scripts/src/benchmark.ts",
"pub": "yarn build && yarn test && lerna publish",
"lint": "eslint .",
"generate-readme": "ts-node --files --project ./scripts/tsconfig.json ./scripts/src/generateReadme.ts"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
}
}