-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "fake-theta",
"private": true,
"description": "RICOH THETA Web API simulator",
"license": "MIT",
"scripts": {
"deploy": "vercel",
"deploy:prod": "vercel --prod",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts --fix .",
"prepare": "husky",
"test": "jest",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/node-fetch": "2.6.11",
"@types/supertest": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vercel/node": "^3.0.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^9.0.0",
"jest": "^29.4.1",
"lint-staged": "^15.0.0",
"node-fetch": "^2.6.12",
"prettier": "^3.0.0",
"sort-package-json": "^2.4.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"vercel": "^33.0.0"
},
"engines": {
"node": "18.x"
}
}