forked from markmap/markmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 857 Bytes
/
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
{
"name": "markmap",
"private": true,
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@gera2ld/plaid": "~2.5.2",
"@gera2ld/plaid-common-ts": "~2.5.1",
"@gera2ld/plaid-rollup": "~2.5.0",
"@gera2ld/plaid-test": "~2.5.0",
"@typescript-eslint/parser": "^5.21.0",
"del-cli": "^4.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"prettier": "^2.6.2"
},
"scripts": {
"prepare": "husky install",
"build": "run-s lint clean build:types build:js",
"lint": "eslint --ext .ts,.tsx .",
"test": "lerna run test",
"clean": "lerna run clean",
"build:types": "lerna run build:types",
"build:js": "lerna run build:js",
"prepublishOnly": "yarn build"
},
"workspaces": [
"packages/*"
]
}