-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "documentation",
"version": "1.0.0",
"description": "Dead by Daylight Modding Documentation",
"directories": {
"doc": "docs"
},
"scripts": {
"presetup": "npm i",
"setup": "pip install mkdocs mkdocs-material",
"preserve": "npx gulp buildstyles",
"serve": "npm-run-all --parallel watchstyles serve:1",
"serve:1": "mkdocs serve",
"preserve:theme": "npx gulp buildstyles",
"serve:theme": "npm-run-all --parallel watchstyles serve:theme:1",
"serve:theme:1" : "mkdocs serve --watch-theme",
"prebuild": "npx gulp buildstyles",
"build": "mkdocs build",
"postbuild": "npx gulp postbuild",
"watchstyles": "npx gulp watchstyles",
"build-and-serve": "npm run build && python3 -m http.server --directory site/"
},
"author": "",
"license": "SEE LICENSE IN LICENSE",
"devDependencies": {
"@types/gulp": "^4.0.9",
"@types/node": "^17.0.8",
"gulp": "^4.0.2",
"gulp-html-beautify": "^1.0.1",
"gulp-sass": "^5.1.0",
"npm-run-all": "^4.1.5",
"sass": "^1.47.0",
"typescript": "^4.5.4"
},
"dependencies": {
"ts-node": "^10.4.0"
}
}