-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "exlg-backend",
"version": "0.0.1",
"description": "Back End of EXLG",
"main": "dist/index.js",
"repository": "https://github.com/extend-luogu/exlg-backend.git",
"author": "汪心禾 <wangxinhe06@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"lint": "eslint --ext js,mjs,cjs,ts,vue .",
"prepare": "husky install",
"start": "node .",
"test": "jest"
},
"dependencies": {
"axios": "^0.26.1",
"express": "^4.18.1",
"nanoid": "^3.3.4",
"redis": "^4.1.0",
"validate-color": "^2.2.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^27.5.1",
"lint-staged": "^13.0.1",
"prettier": "^2.6.2",
"supertest": "^6.2.3",
"ts-jest": "^27.1.5",
"typescript": "^4.7.3"
}
}