-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
77 lines (77 loc) · 2.22 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
{
"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": "vuepress dev docs",
"build": "vuepress build docs && npm run generate-version-atom && npm run generate-contributors",
"purge": "rm -rf node_modules",
"test": "npm run lint && jest --coverage --coverageDirectory='__coverage__'",
"test:full": "npm run test && npm run build",
"lint": "eslint --fix --ext .js,.vue docs/.vuepress && markdownlint -c .markdownlint.jsonc docs/**/*.md",
"regenerate-schema": "node ./utils/regenerate-schema.js",
"generate-version-atom": "node ./utils/generate-version-atom.js",
"generate-contributors": "node ./utils/generate-contributors.js",
"requirements-check": "babel-node check-version.js",
"postinstall": "npm run requirements-check"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"husky": {
"hooks": {
"pre-commit": "npm run test:full"
}
},
"dependencies": {
"@babel/node": "^7.13.13",
"@sentry/browser": "^6.2.5",
"@sentry/integrations": "^6.2.5",
"@sentry/tracing": "^6.2.5",
"@vuepress/core": "^1.8.0",
"@vuepress/plugin-back-to-top": "^1.8.0",
"axios": "^0.21.2",
"jquery": "^3.6.0",
"semver": "^6.3.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",
"codecov": "^3.8.1",
"eslint": "^7.18.0",
"eslint-plugin-vue": "^7.5.0",
"eslint-plugin-vue-a11y": "^0.0.31",
"husky": "^4.3.8",
"jest": "^26.6.3",
"markdownlint-cli": "^0.27.1",
"node-fetch": "^2.6.1",
"pug": "^3.0.0",
"pug-plain-loader": "^1.1.0",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"uuid": "^8.3.2",
"vue-eslint-parser": "^7.4.1",
"vue-svg-loader": "^0.16.0"
}
}