-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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": "root",
"private": true,
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint --continue",
"lint:fix": "eslint --fix packages/**/*.{ts,js} && prettier --write \"packages/**/*.{ts,js}\"",
"test": "turbo run test --continue",
"typecheck": "turbo run typecheck --continue",
"publish-packages": "pnpm build && pnpm publish -r",
"publish-local": "pnpm build && pnpm publish -r",
"preinstall": "npx only-allow pnpm",
"demo-types": "clarigen"
},
"prettier": "@stacks/prettier-config",
"devDependencies": {
"@changesets/changelog-github": "0.4.5",
"@jest/environment": "28.1.1",
"@stacks/eslint-config": "1.0.9",
"@stacks/prettier-config": "0.0.9",
"@strictsoftware/typedoc-plugin-monorepo": "^0.4.2",
"@swc-node/jest": "1.3.3",
"@types/jest": "28.1.2",
"@types/node": "16.11.7",
"eslint": "^7.27.0",
"eslint-plugin-jest": "^23.16.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^28.0.1",
"jest-cli": "^28.0.1",
"lerna": "^4.0.0",
"prettier": "^2.8.4",
"shx": "^0.3.4",
"tslib": "^2.1.0",
"tsup": "^6.1.2",
"turbo": "1.2.5",
"typedoc": "0.23.7",
"typescript": "4.9.4"
},
"dependencies": {
"@changesets/cli": "^2.23.2",
"jsonfile": "^6.1.0"
}
}