-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
73 lines (73 loc) · 2.17 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
{
"name": "@staart/site",
"version": "2.4.0",
"module": "dist/module.js",
"main": "dist/index.js",
"bin": "./dist/index.js",
"types": "./dist/module.d.ts",
"repository": "[email protected]:staart/site",
"homepage": "https://staart.js.org/site",
"author": "Anand Chowdhary <[email protected]>",
"license": "MIT",
"files": [
"dist",
"src"
],
"scripts": {
"compile": "tsc",
"generate": "node dist/index.js",
"build": "npm run compile && npm run generate",
"increment-package": "node setup/increment.js",
"serve": "live-server public --quiet",
"prettier-all": "prettier '{src,setup}/**/*.{ts,js,json}' --write",
"watch-build": "onchange '{src}/**/*.ts' -- yarn build",
"watch-prettier": "onchange '{src}/**/*.{ts,json}' -- prettier --write {{changed}}",
"changelog": "gitmoji-changelog",
"release": "gh-release",
"semantic-release": "semantic-release"
},
"dependencies": {
"axios": "^0.21.0",
"concurrently": "^5.2.0",
"cosmiconfig": "^6.0.0",
"front-matter": "^4.0.2",
"fs-extra": "^9.0.1",
"git-url-parse": "^11.5.0",
"handlebars": "^4.7.7",
"highlight.js": "^10.5.0",
"html-minifier": "^4.0.0",
"live-server": "^1.2.1",
"marked": "^1.2.7",
"minimist": "^1.2.5",
"node-cache": "^5.1.1",
"recursive-readdir": "^2.2.2",
"remove-markdown": "^0.3.0",
"sass": "^1.37.2",
"signale": "^1.4.0",
"sitemap": "^6.3.3",
"truncate": "^2.1.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/fs-extra": "^9.0.12",
"@types/git-url-parse": "^9.0.1",
"@types/highlight.js": "^10.1.0",
"@types/html-minifier": "^3.5.3",
"@types/marked": "^0.7.4",
"@types/minimist": "^1.2.2",
"@types/node": "^14.14.21",
"@types/recursive-readdir": "^2.2.0",
"@types/remove-markdown": "^0.1.1",
"@types/sass": "^1.16.1",
"@types/signale": "^1.4.2",
"@types/yaml": "^1.9.7",
"gh-release": "^5.0.1",
"gitmoji-changelog": "^2.2.1",
"onchange": "^7.1.0",
"prettier": "^2.3.2",
"semantic-release": "^17.4.4",
"semantic-release-gitmoji": "^1.3.4",
"typescript": "^4.0.5"
}
}