forked from bashtage/sphinx-material
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.72 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "sphinx-material",
"version": "0.0.0",
"description": "Sphinx Material design theme",
"keywords": [
"sphinx",
"documentation",
"theme"
],
"homepage": "https://bashtage.github.io/sphinx-material/",
"bugs": {
"url": "https://github.com/bashtage/sphinx-material/issues",
"email": "[email protected]"
},
"license": "MIT",
"private": true,
"author": {
"name": "Kevin Sheppard",
"email": "[email protected]"
},
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/bashtage/sphinx-material.git"
},
"scripts": {
"build": "npm run clean && ts-node -T tools/build --optimize",
"build:dev": "npm run clean && ts-node -T tools/build",
"build:dirty": "ts-node -T tools/build --dirty",
"build:noclean": "ts-node -T tools/build --verbose",
"docs": "npm run build && rimraf docs/_build && cd docs && sphinx-build . _build -a",
"docs:dev": "npm run build:dev && rimraf docs/_build/* && cd docs && sphinx-build . _build -a",
"clean": "rimraf sphinx_material/{*.html,partials,.icons,static}",
"lint": "npm run lint:scss && npm run lint:ts",
"lint:scss": "stylelint \"src/assets/**/*.scss\"",
"lint:ts": "eslint --cache \"{src,tools}/**/*.ts\"",
"start": "ts-node -T tools/build --verbose --dirty --watch"
},
"dependencies": {
"clipboard": "^2.0.8",
"escape-html": "^1.0.3",
"focus-visible": "^5.2.0",
"html-minifier": "^4.0.0",
"postcss-inline-svg": "^5.0.0",
"rxjs": "^7.2.0",
"tiny-glob": "^0.2.9",
"ts-node": "^10.2.1"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"@mdi/svg": "^5.9.55",
"@primer/octicons": "^14.2.2",
"@types/clipboard": "^2.0.7",
"@types/escape-html": "1.0.1",
"@types/node": "^16.4.3",
"@types/resize-observer-browser": "^0.1.6",
"@types/sass": "^1.16.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"autoprefixer": "^10.3.1",
"cssnano": "^5.0.7",
"esbuild": "^0.12.16",
"eslint": "^7.31.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^36.0.2",
"eslint-plugin-no-null": "^1.0.2",
"github-types": "^1.0.0",
"gitlab": "^14.2.2",
"material-design-color": "^2.3.2",
"material-shadows": "^3.0.1",
"postcss": "^8.3.6",
"preact": "^10.5.14",
"rimraf": "^3.0.2",
"sass": "^1.36.0",
"stylelint": "^13.13.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.20.1",
"typescript": "^4.3.5"
},
"engines": {
"node": ">= 14"
}
}