-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.48 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
47
48
49
50
51
52
53
54
55
{
"name": "notion-render",
"version": "0.0.0",
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"vercel-build": "next build",
"prepare": "npx is-ci || npx husky install",
"build": "turbo build",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"dev": "turbo run dev",
"commit": "cz",
"release:alpha": "yarn build && yarn workspaces foreach --verbose --topological-dev --parallel --no-private npm publish --tolerate-republish --tag=alpha"
},
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/kerwanp/notion-render"
},
"private": true,
"resolutions": {
"@notion-render/client": "workspace:*"
},
"workspaces": [
"packages/**",
"apps/docs"
],
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@commitlint/cz-commitlint": "^17.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"commitizen": "^4.3.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^1.9.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-turbo": "^1.9.3",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.2",
"turbo": "^1.9.3",
"typescript": "^5.0.4"
},
"packageManager": "[email protected]"
}