-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
76 lines (76 loc) · 2.1 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
{
"name": "docs",
"version": "1.0.0",
"description": "The handlebars documentation site",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rm -rf target node_modules/@vuepress/core/node_modules/.cache/",
"dev": "vuepress dev src",
"preview": "npm run clean && npm run test-and-build && cd target && static-server",
"fix": "npm run format && npm run lintfix",
"test-and-build": "concurrently --kill-others-on-fail npm:lint npm:test npm:build",
"lint": "eslint \"**/*.{js,vue}\"",
"lintfix": "eslint --fix \"**/*.{js,vue}\"",
"test": "jest",
"format": "prettier --write \"src/**/*.{js,css,json,md,vue}\"",
"build": "vuepress build src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/handlebars-lang/docs.git"
},
"bugs": {
"url": "https://github.com/handlebars-lang/docs/issues"
},
"homepage": "https://github.com/handlebars-lang/docs#readme",
"dependencies": {
"axios": "^0.21.2",
"babel-eslint": "^10.1.0",
"codemirror": "^5.60.0",
"debounce-promise": "^3.1.2",
"handlebars": "^4.7.7",
"highlight.js": "^10.7.1",
"js-yaml": "^3.14.1",
"json5": "^2.2.2",
"promise-worker": "^2.0.1",
"vue-cm": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/node": "^7.13.10",
"@babel/register": "^7.13.8",
"@vuepress/plugin-pwa": "^1.8.2",
"@vuepress/plugin-register-components": "^1.8.2",
"concurrently": "^5.3.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-vue": "^6.2.2",
"fs-extra": "^9.1.0",
"husky": "^4.3.8",
"jest": "^25.5.4",
"lint-staged": "^10.5.4",
"markdown-it": "^12.3.2",
"prettier": "^2.2.1",
"semver": "^7.5.2",
"static-server": "^2.2.1",
"vuepress": "^1.8.2",
"worker-loader": "^2.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md,vue}": [
"prettier --write",
"git add"
],
"*.{js,vue}": [
"eslint --fix",
"git add"
]
}
}