forked from handlebars-lang/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.13 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
{
"name": "docs",
"version": "1.0.0",
"description": "The new-to-be handlebars documentation site",
"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"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/handlebars-lang/docs/issues"
},
"homepage": "https://github.com/handlebars-lang/docs#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/register": "^7.9.0",
"@vuepress/plugin-pwa": "^1.4.1",
"@vuepress/plugin-register-components": "^1.4.1",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-vue": "^6.2.2",
"fs-extra": "^9.0.0",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.1.3",
"markdown-it": "^10.0.0",
"prettier": "^2.0.4",
"semver": "^7.3.2",
"static-server": "^2.2.1",
"vuepress": "^1.4.1",
"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"
]
},
"dependencies": {
"axios": "^0.19.2",
"babel-eslint": "^10.1.0",
"codemirror": "^5.52.2",
"debounce-promise": "^3.1.2",
"handlebars": "^4.7.6",
"highlight.js": "^9.18.1",
"js-yaml": "^3.13.1",
"json5": "^2.1.3",
"promise-worker": "^2.0.1",
"vue-cm": "^1.1.0"
}
}