-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"workspaces": [
"packages/core",
"packages/docs",
"packages/@sitdown/*"
],
"private": true,
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap",
"start": "lerna run start",
"build": "lerna exec --scope sitdown -- yarn build && lerna run build --ignore sitdown",
"test": "lerna run test",
"lint": "tsdx lint --fix",
"docs:dev": "lerna exec --scope sitdown -- yarn build && lerna exec --scope docs -- vuepress dev",
"docs:build": "lerna exec --scope sitdown -- yarn build && lerna exec --scope docs -- vuepress build",
"clean": "lerna clean && rm -rf node_modules",
"prepublish": "npm run build && lerna publish"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/markdown-it": "0.0.9",
"husky": "^3.1.0",
"jest-raw-loader": "^1.0.1",
"lerna": "^3.20.2",
"markdown-it": "^12.3.2",
"tsdx": "^0.12.0",
"tslib": "^1.10.0",
"typescript": "^3.7.4",
"vuepress": "^1.2.0"
}
}