forked from NotionX/react-notion-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.06 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "notion",
"private": true,
"description": "Fast and accurate React renderer for Notion. TS batteries included.",
"repository": "NotionX/react-notion-x",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
"version": "6.15.8",
"engines": {
"node": ">=12"
},
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "run-s build:*",
"build:tsc": "tsc --build",
"build:tsup": "lerna run build --no-private",
"watch": "run-p watch:* --continue-on-error",
"watch:tsc": "tsc --build --watch --preserveWatchOutput",
"watch:tsup": "lerna run watch --no-private --parallel",
"link": "lerna exec \"yarn link\" --no-private",
"dev": "run-s watch",
"prebuild": "run-s clean",
"prewatch": "run-s clean",
"clean": "del packages/*/build",
"pretest": "run-s build",
"test": "run-p test:*",
"test:unit": "lerna run test",
"test:eslint": "eslint '**/*.{ts,tsx}'",
"test:prettier": "prettier '**/*.{js,jsx,ts,tsx}' --check",
"bootstrap": "lerna bootstrap",
"predeploy": "run-s build",
"deploy": "lerna publish",
"preinstall": "node -e \"if (process.env.npm_execpath.indexOf('yarn') < 0) throw new Error('this package requires yarn for development')\"",
"postinstall": "run-s bootstrap",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.1",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"ava": "^4.1.0",
"del-cli": "^4.0.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lerna": "^4.0.0",
"lint-staged": "^12.3.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tsup": "^6.2.3",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}