-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "datx",
"scripts": {
"precommit": "npm run lint & lerna run test",
"lint": "eslint packages/**/*.ts",
"ts:check": "lerna run ts:check",
"postinstall": "npm run prepare",
"prepare": "husky install",
"test": "lerna run test",
"build": "lerna run build --no-private",
"watch": "lerna run watch --no-private",
"watch:swr": "lerna run watch --scope @datx/swr",
"test:swr": "lerna run test --scope @datx/swr",
"clean": "lerna clean && yarn clean:dist",
"clean:dist": "lerna exec -- rm -rf ./dist",
"pkg:check": "manypkg check",
"pkg:fix": "manypkg fix",
"publish": "lerna publish --contents dist --no-private",
"publish:beta": "npm run publish -- --npm-tag=beta --preid=beta",
"publish:dry": "lerna publish --contents dist --no-push --no-git-tag-version",
"nx:report": "nx report"
},
"private": true,
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"dependencies": {
"@infinumjs/eslint-config-core-ts": "^3.5.0",
"@manypkg/cli": "^0.19.2",
"@nrwl/cli": "^15.9.3",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"husky": "^8.0.0",
"lerna": "^6.6.1",
"nx": "^16.4.0",
"prettier": "2.7.1",
"typescript": "~4.7.3"
},
"packageManager": "yarn@3.2.4"
}