-
-
Notifications
You must be signed in to change notification settings - Fork 504
/
package.json
98 lines (98 loc) · 2.36 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
89
90
91
92
93
94
95
96
97
98
{
"private": true,
"author": "Preact Authors <[email protected]>",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vite --port 8080",
"server": "vite preview --port 8080",
"build": "vite build",
"lint": "eslint src test",
"format": "prettier --write \"{src,test}/**/*.{css,js,json}\"",
"prepare": "husky install",
"postinstall": "patch-package"
},
"eslintConfig": {
"extends": "developit",
"rules": {
"react/sort-comp": 0,
"react/no-danger": 0,
"react/jsx-no-bind": 0,
"brace-style": 0,
"indent": 0,
"lines-around-comment": 0,
"no-prototype-builtins": 0
},
"globals": {
"globalThis": true,
"ga": true
},
"settings": {
"react": {
"version": "16.8"
}
}
},
"eslintIgnore": [
"prism.js",
"**/*.d.ts"
],
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"useTabs": true,
"tabWidth": 2
},
"lint-staged": {
"{src,test}/**/*.{css,js,json}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/polyfill": "^7.7.0",
"@xmldom/xmldom": "^0.8.10",
"concurrently": "^8.2.2",
"eslint": "^6.8.0",
"eslint-config-developit": "^1.1.1",
"feed": "^4.2.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"patch-package": "^8.0.0",
"prettier": "^1.19.1",
"rimraf": "^5.0.5",
"vite": "^5.0.11",
"vite-plugin-static-copy": "1.0.2"
},
"dependencies": {
"@codemirror/commands": "^6.6.0",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/language": "^6.10.2",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.28.1",
"@docsearch/react": "^3.6.0",
"@preact/preset-vite": "^2.8.3",
"@preact/signals": "^1.1.3",
"@preact/signals-core": "^1.2.3",
"@rollup/browser": "^3.18.0",
"@rollup/plugin-replace": "^5.0.5",
"codemirror": "^6.0.1",
"comlink": "^4.4.1",
"decko": "^1.2.0",
"htm": "^3.1.1",
"magic-string": "^0.25.7",
"marked": "^0.8.0",
"preact": "10.15.1",
"preact-custom-element": "^4.3.0",
"preact-iso": "^2.6.3",
"preact-markup": "^2.1.1",
"preact-render-to-string": "^6.4.1",
"rollup": "^2.79.1",
"sucrase": "^3.32.0",
"yaml": "^1.7.2"
}
}