forked from JetBrains/guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.93 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
79
80
81
82
83
84
85
86
87
88
{
"name": "g3-tsx",
"engines": {
"node": "^20.10.0",
"npm": "^10.2.3"
},
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "tsx node_modules/@11ty/eleventy/cmd.cjs --serve --incremental --config=eleventy.config.ts",
"build": "tsx node_modules/@11ty/eleventy/cmd.cjs --config=eleventy.config.ts --pathprefix=/guide && npm run demos && npm run lunr-search-index",
"lunr-search-index": "node tools/lunrSearchIndex.js",
"test:build": "tsc --noEmit",
"demos": "copyfiles -e './_site/dotnet' -f './site/dotnet/**/demos/*' -f false --verbose && copyfiles -e './_site/goland' -f './site/goland/**/demos/*' -f false --verbose && copyfiles -e './_site/intellij' -f './site/intellij/**/demos/*' -f false --verbose && copyfiles -e './_site/pycharm' -f './site/pycharm/**/demos/*' -f false --verbose && copyfiles -e './_site/webstorm' -f './site/webstorm/**/demos/*' -f false --verbose",
"clean": "rimraf _site .11ty-vite .assets-cache",
"test": "vitest run",
"broken-link-checker": "node ./src/scanner.js",
"tools": "vite-node --script ./tools/index.ts",
"lint": "eslint ./site",
"lint:fix": "eslint ./site --fix",
"prepare": "husky install",
"format": "prettier --write --ignore-unknown ./"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0-alpha.13",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-vite": "^4.0.0",
"@fortawesome/fontawesome-free": "^6.5.2",
"@fullhuman/postcss-purgecss": "^5.0.0",
"@jetbrains/logos": "^3.0.0-canary.90f9d0e.0",
"@rescui/icons": "^0.14.0",
"@rescui/typography": "^0.12.0",
"@sinclair/typebox": "^0.26.8",
"@testing-library/dom": "^9.2.0",
"@types/command-line-args": "^5.2.3",
"@types/luxon": "^3.2.0",
"@types/markdown-it": "^12.2.3",
"@types/video.js": "^7.3.50",
"@types/yargs": "^17.0.24",
"@vitest/coverage-c8": "^0.33.0",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"broken-link-checker": "^0.7.8",
"bulma": "^0.9.4",
"chalk": "^5.3.0",
"command-line-args": "^5.2.1",
"consistent-hash": "^1.1.1",
"copyfiles": "^2.4.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-markdownlint": "^0.4.1",
"freezeframe": "^5.0.2",
"happy-dom": "^14.10.1",
"html-entities": "^2.5.2",
"husky": "^9.0.11",
"image-size": "^1.1.1",
"jsx-async-runtime": "^0.2.1",
"lint-staged": "^15.2.2",
"lunr": "^2.3.9",
"node-fetch": "^3.3.2",
"node-html-parser": "^6.1.13",
"plyr": "^3.7.8",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"sass": "^1.77.1",
"sharp": "0.33.3",
"shiki": "1.5.1",
"jetbrains-ide-themes": "0.0.5",
"svgo": "^3.3.2",
"ts-node": "^10.9.2",
"tsx": "^4.10.2",
"typescript": "^5.4.5",
"upath": "^2.0.1",
"vite": "5.2.11",
"vite-plugin-image-optimizer": "^1.1.7",
"vitest": "^0.30.1",
"yargs": "^17.7.2"
},
"volta": {
"node": "20.10.0",
"npm": "10.2.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}