-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.39 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.39 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
{
"name": "vega-editor-backend",
"version": "0.1.0",
"description": "Backend for Vega Editor",
"scripts": {
"start": "vercel dev",
"deploy": "vercel",
"build": "tsc",
"lint": "eslint {src/**/*.ts,config/*.ts}",
"format": "eslint --fix {src/**/*.ts,config/*.ts}",
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "typedoc"
},
"type": "module",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/vega/editor-backend.git"
},
"author": "",
"bugs": {
"url": "https://github.com/vega/editor-backend/issues"
},
"homepage": "https://github.com/vega/editor-backend#readme",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/passport-github": "^1.1.13",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"husky": ">=9",
"lint-staged": ">=16",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vercel": "^50.9.6"
},
"dependencies": {
"@types/cors": "^2.8.19",
"@types/passport": "1.0.17",
"cors": "^2.8.6",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"passport": "^0.7.0",
"passport-github2": "^0.1.12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint"
]
}
}