-
-
Notifications
You must be signed in to change notification settings - Fork 601
/
Copy pathpackage.json
54 lines (54 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
{
"name": "notion",
"private": true,
"description": "Fast and accurate React renderer for Notion. TS batteries included.",
"repository": "NotionX/react-notion-x",
"author": "Travis Fischer <[email protected]>",
"license": "MIT",
"version": "7.3.0",
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "turbo build --filter='./packages/*'",
"dev": "turbo dev --concurrency 50 --continue",
"clean": "turbo clean",
"test": "turbo test",
"test:format": "prettier --check \"**/*.{js,ts,tsx}\"",
"test:lint": "turbo test:lint",
"test:typecheck": "turbo test:typecheck",
"test:unit": "turbo test:unit",
"release": "bumpp -r && pnpm publish -r",
"pretest": "run-s build",
"preinstall": "npx only-allow pnpm",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@fisch0920/eslint-config": "^1.4.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22.13.10",
"bumpp": "^10.1.0",
"del-cli": "^6.0.0",
"eslint": "^8.57.1",
"npm-run-all2": "^7.0.2",
"prettier": "^3.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"turbo": "^2.4.4",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --ignore-unknown --write",
"eslint --fix"
]
}
}