-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
36 lines (36 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
{
"name": "documentalist-monorepo",
"version": "0.0.0",
"private": true,
"description": "A sort-of-static site generator optimized for living documentation of software projects",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean",
"deploy": "NODE_DEBUG=gh-pages gh-pages -d packages/docs/dist -b master",
"format": "prettier --write \"./**/*.{js,json,md,ts,tsx,yml}\"",
"format-check": "prettier --check \"./**/*.{js,json,md,ts,tsx,yml}\"",
"lint": "lerna run lint",
"lint-fix": "lerna run lint-fix",
"test": "lerna run test",
"verify": "npm-run-all -s build -p test lint"
},
"dependencies": {
"@blueprintjs/tslint-config": "^4.1.3",
"circle-github-bot": "^2.1.0",
"gh-pages": "^6.1.1",
"lerna": "^8.1.2",
"npm-run-all": "^4.1.5",
"octokit": "^3.1.2",
"prettier": "^3.2.5",
"tslint-plugin-prettier": "^2.3.0",
"yarn-deduplicate": "^6.0.2"
},
"author": "Palantir Technologies",
"repository": {
"type": "git",
"url": "[email protected]:palantir/documentalist.git"
}
}