-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.09 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
{
"name": "just-the-docs",
"version": "0.3.0",
"description": "A modern Jekyll theme for documentation",
"repository": "pmarsceill/just-the-docs",
"license": "MIT",
"bugs": "https://github.com/pmarsceill/just-the-docs/issues",
"devDependencies": {
"@octokit/types": "^6.1.2",
"@primer/css": "^14.4.0",
"@types/semver": "^7.3.4",
"@vercel/ncc": "^0.26.1",
"prettier": "^2.0.5",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-primer": "^9.0.0",
"stylelint-prettier": "^1.1.2",
"stylelint-selector-no-utility": "^1.7.0",
"typescript": "^4.2.3"
},
"scripts": {
"test": "stylelint '**/*.scss'",
"format": "prettier --write '**/*.{scss,js,json}'",
"stylelint-check": "stylelint-config-prettier-check",
"build": "yarn install && tsc",
"bundle": "browserify -o assets/js/internalpages/releaseui-bundle.js assets/js/internalpages/releaseui.js",
"start": "bundle exec jekyll serve",
"all": "yarn run build && yarn run bundle && yarn run start"
},
"dependencies": {
"@octokit/rest": "^18.0.12"
}
}