forked from AscensionGameDev/Intersect-Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.93 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.93 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"dependencies": {
"@astrojs/mdx": "^0.17.2",
"@astrojs/preact": "^2.0.3",
"@astrojs/react": "^2.0.2",
"@astrojs/sitemap": "^1.1.0",
"@types/node": "^18.14.6",
"@types/react": "^17.0.53",
"@types/react-dom": "^18.0.11",
"astro": "^2.0.17",
"commander": "^10.0.0",
"preact": "^10.13.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark-toc": "^8.0.1",
"simple-git": "^3.17.0",
"yargs": "^17.7.1"
},
"devDependencies": {
"@ascensiongamedev/rehype-video": "^1.2.6",
"@isnotdefined/stylelint-plugin": "^3.0.0",
"@types/hast": "^2.3.4",
"@types/html-escaper": "^3.0.0",
"@types/jest": "^29.4.0",
"@types/semver": "^7.3.13",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"dictionary-en": "^3.2.0",
"dictionary-es": "^3.2.0",
"dictionary-fr": "^2.8.0",
"dictionary-it": "^1.4.0",
"dictionary-nl": "^1.6.0",
"dictionary-pt": "^3.1.0",
"eslint": "^8.35.0",
"eslint-config-preact": "^1.3.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-react": "^7.32.2",
"hast-util-from-html": "^1.0.1",
"hastscript": "^7.2.0",
"html-escaper": "^3.0.3",
"jest": "^29.4.3",
"postcss-html": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-lint": "^9.1.1",
"remark-reference-links": "^6.0.1",
"remark-validate-links": "^12.1.0",
"rollup": "^3.18.0",
"semver": "^7.3.8",
"stylelint": "^15.2.0",
"stylelint-config-astro": "^1.0.4",
"stylelint-config-standard": "^30.0.1",
"stylelint-csstree-validator": "github:csstree/stylelint-validator#d3a16e2d4f8ef76efe422b5111cff237e1470635",
"stylelint-high-performance-animation": "^1.8.0",
"stylelint-no-indistinguishable-colors": "github:lodicolo/stylelint-no-indistinguishable-colors",
"stylelint-no-unsupported-browser-features": "^6.1.0",
"stylelint-order": "^6.0.2",
"stylelint-rem-over-px": "^1.0.0",
"textlint": "^13.3.1",
"textlint-rule-max-comma": "^3.0.1",
"textlint-rule-no-start-duplicated-conjunction": "^2.0.2",
"textlint-rule-spelling": "^0.3.0",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.2"
},
"engines": {
"node": "~18.12.1",
"pnpm": "^7.29.0",
"ts-node": ">= 10.9.1"
},
"license": "MIT",
"name": "astro",
"repository": {
"type": "git",
"url": "https://github.com/AscensionGameDev/Intersect-Documentation.git"
},
"scripts": {
"astro": "astro",
"build": "astro build",
"dev": "astro dev",
"eslint": "eslint",
"lint": "tsc --noEmit ; eslint . ; textlint . ; stylelint .",
"lint:fix": "eslint . --fix && textlint . --fix && stylelint . --fix",
"migrate-version": "ts-node --esm ./scripts/migrateVersion.ts",
"preview": "astro preview",
"start": "astro dev",
"stylelint": "stylelint",
"textlint": "textlint"
},
"type": "module",
"version": "0.7.1",
"volta": {
"node": "18.12.1",
"pnpm": "7.29.0"
}
}