-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "photon-editor",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext .js,.ts,.tsx,.cjs",
"lint:fix": "eslint . --ext .js,.ts,.tsx,.cjs --fix",
"prepare": "husky install"
},
"xo": {
"space": 2
},
"lint-staged": {
"*.js": [
"eslint . --ext .js,.ts,.tsx,.cjs --fix",
"git add"
],
"*.ts": [
"eslint . --ext .js,.ts,.tsx,.cjs --fix",
"git add"
]
},
"devDependencies": {
"@codemirror/commands": "^6.2.2",
"@codemirror/lang-markdown": "^6.1.1",
"@codemirror/language-data": "^6.2.0",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.9.4",
"@typescript-eslint/eslint-plugin": ">=5.57.0",
"@typescript-eslint/parser": ">=5.57.0",
"eslint": "^8.38.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-space": "^0.34.0",
"eslint-config-xo-typescript": "^0.57.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"typescript": "^5.0.4",
"vite": "^4.2.1"
},
"dependencies": {
"@codemirror/language": "^6.6.0",
"@lezer/highlight": "^1.1.4"
}
}