-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "d13-sassdoc-theme",
"private": true,
"version": "1.0.0-alpha.0",
"description": "Taking a stab at my own SassDoc theme",
"keywords": [
"sassdoc-theme",
"sassdoc",
"sass",
"documentation"
],
"author": {
"name": "Keith Daulton",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/d13/d13-sassdoc-theme.git"
},
"bugs": {
"url": "https://github.com/d13/d13-sassdoc-theme/issues"
},
"license": "MIT",
"packageManager": "[email protected]",
"main": "index.js",
"scripts": {
"lint": "next lint",
"export": "next build && next export -o dist/next",
"serve": "yarn preview:data && next dev",
"preview": "node build/sassdoc.js",
"preview:data": "SASSDOC_THEME_DATA=true yarn preview",
"preview:default": "THEME_DEFAULT=true yarn preview"
},
"dependencies": {
"@svgr/webpack": "^6.2.1",
"classnames": "^2.3.1",
"fs-extra": "^10.0.1",
"lodash.uniq": "^4.5.0",
"next": "^12.1.4",
"prism-themes": "^1.9.0",
"prismjs": "^1.27.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-syntax-highlighter": "^15.5.0",
"sassdoc-extras": "^3.0.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"eslint": "8.13.0",
"eslint-config-next": "12.1.4",
"sass": "^1.50.0",
"sassdoc": "^2.7.3"
}
}