-
-
Notifications
You must be signed in to change notification settings - Fork 570
/
package.json
42 lines (42 loc) · 1.2 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
{
"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.0.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",
"pretest": "run-s build",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@fisch0920/eslint-config": "^1.4.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22.8.4",
"del-cli": "^6.0.0",
"eslint": "^8.57.1",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"turbo": "^2.2.3",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}