-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 855 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 855 Bytes
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
{
"name": "@notionpresso/react",
"version": "0.0.1",
"description": "this is a react library for notionpresso",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"story:build": "npm run build-storybook --workspace=story",
"story:start": "npm run storybook --workspace=story",
"library:build": "npm run build --workspace=@notionpresso/react",
"start": "npm run story:start",
"build": "npm run library:build",
"prepare": "husky install",
"format": "prettier --write ."
},
"author": "meuryphus",
"license": "MIT",
"workspaces": [
"packages/*"
],
"devDependencies": {
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,mdx,css}": [
"prettier --write --ignore-unknown"
]
}
}