-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.31 KB
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
{
"name": "mtgjson-website",
"version": "2.1.0",
"author": "MTGJSON Developers",
"repository": "https://github.com/mtgjson/mtgjson-website",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "run-p lint:js:watch local",
"dev:bare": "vitepress dev docs --watch",
"local": "npm run check:version && npm run purge:cache && npm run generate:types && npm run generate:contributors && npm run dev:bare",
"build": "npm run generate:types && npm run generate:contributors && vitepress build docs && npm run generate:feeds",
"build:bare": "vitepress build docs",
"purge": "rm -rf node_modules && npm run purge:cache",
"purge:cache": "rm -rf docs/.vitepress/cache",
"test": "npm run lint && jest --coverage --coverageDirectory='__coverage__'",
"test:full": "npm run test && npm run build",
"lint:js:watch": "chokidar 'docs/.vitepress/**/*.{ts,js,vue}' -c 'npm run lint:js'",
"lint:js": "eslint --fix docs/.vitepress",
"lint:md": "markdownlint -c .markdownlint.jsonc docs/**/*.md",
"lint": "npm run lint:js && npm run lint:md",
"check:version": "node ./util/check-version.js",
"generate:contributors": "node ./node_modules/.bin/babel-node ./util/generate-contributors.js",
"generate:feeds": "node ./node_modules/.bin/babel-node ./util/generate-feeds.js",
"generate:types": "node ./node_modules/.bin/babel-node ./util/generate-types.js"
},
"dependencies": {
"axios": "^1.7.7",
"pinia": "^3.0.4"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.8",
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@vue/language-plugin-pug": "^3.2.5",
"cheerio": "^1.0.0-rc.12",
"chokidar-cli": "^3.0.0",
"codecov": "^3.8.3",
"eslint": "^10.0.2",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"markdown-it-anchor": "^9.2.0",
"markdownlint-cli": "^0.49.0",
"npm-run-all": "^4.1.5",
"pug": "^3.0.3",
"sass": "^1.70.0",
"semver": "^7.3.5",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"uuid": "^14.0.0",
"vitepress": "^1.0.0-rc.39",
"vue": "^3.2.37",
"vue-eslint-parser": "^10.4.0"
}
}