-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
76 lines (76 loc) · 2.18 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": "mtgjson-website",
"version": "2.3.0",
"author": "MTGJSON Developers",
"repository": "https://github.com/mtgjson/mtgjson-website",
"license": "MIT",
"engines": {
"node": "^12.16.3"
},
"scripts": {
"dev": "run-p lint:js:watch local",
"local": "npm run check-version && vuepress dev docs",
"build": "npm run generate-contributors && vuepress build docs && npm run generate-version-atom",
"purge": "rm -rf node_modules",
"test": "npm run lint && jest --coverage --coverageDirectory='__coverage__'",
"test:full": "npm run test && npm run build",
"lint:js:watch": "esw --fix --ext .js,.vue docs/.vuepress -w",
"lint:js": "esw --fix --ext .js,.vue docs/.vuepress",
"lint:md": "markdownlint -c .markdownlint.jsonc docs/**/*.md",
"lint": "npm run lint:js && npm run lint:md",
"check-version": "node ./utils/check-version.js",
"generate-version-atom": "node ./utils/generate-version-atom.js",
"generate-contributors": "node ./utils/generate-contributors.js"
},
"dependencies": {
"@vuepress/core": "^1.8.0",
"@vuepress/plugin-back-to-top": "^1.8.0",
"axios": "^0.21.2",
"jquery": "^3.6.0",
"vue-svg-loader": "^0.16.0",
"vuepress": "^1.8.0",
"vuepress-plugin-container": "^2.1.5",
"vuepress-plugin-feed": "^0.1.9",
"vuepress-plugin-nprogress": "^1.1.8",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"chalk": "^4.1.0",
"codecov": "^3.8.1",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^8.2.0",
"eslint-watch": "^8.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"markdownlint-cli": "^0.27.1",
"npm-run-all": "^4.1.5",
"pug": "^3.0.0",
"pug-plain-loader": "^1.1.0",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"semver": "^6.3.0",
"uuid": "^8.3.2",
"vue-eslint-parser": "^7.4.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run test:full"
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}