forked from DavidKk/Vercel-Gemini-Proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.01 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
{
"name": "vercel-gemini-proxy",
"version": "1.0.0",
"private": true,
"description": "Gemini API proxy on Vercel Edge.",
"scripts": {
"commit": "git-cz",
"ci:coverage": "npm run test",
"postinstall": "node --experimental-modules ./scripts/postinstall.mjs",
"preinstall": "node --experimental-modules ./scripts/preinstall.mjs",
"clear": "rimraf --glob ./libs",
"format": "prettier --config .prettierrc.js --write \"**/*.{js,jsx,ts,tsx,d.ts,vue,md,json,yml,yaml}\"",
"lint": "npm run lint:ts",
"lint:ts": "eslint --config .eslintrc.js --ext .ts,.tsx --fix .",
"next": "next",
"build": "next build",
"dev": "PORT=4000 next dev",
"test": "jest -c ./jest.config.ts --coverage --reporters=default --reporters=jest-junit",
"test:watch": "jest --watch",
"ok": "npm run format && npm run lint && npm run build && npm run test"
},
"dependencies": {
"next": "canary"
},
"devDependencies": {
"rimraf": "^5.0.5",
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"commitizen": "^4.2.4",
"commitlint-plugin-i18n": "^0.0.1-alpha.3",
"cz-customizable": "^7.0.0",
"cz-customizable-i18n-config": "^0.0.1-alpha.2",
"pretty-error": "^4.0.0",
"chalk": "^4.1.2",
"husky": "^8.0.3",
"@types/chalk": "^2.2.0",
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.11",
"@types/node": "latest",
"@types/react": "18.2.48",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-runner-tsd": "^6.0.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"ts-patch": "^3.1.1",
"lint-staged": "^15.2.0",
"typescript-transform-paths": "^3.4.6",
"spinnies": "^0.5.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react-hooks": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1"
}
}