-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 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
61
62
63
64
65
66
67
{
"name": "popcat",
"version": "1.0.0",
"description": "popcat server",
"main": "index.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "swc ./src -d dist",
"deploy:deta": "npm run build && deta deploy",
"dev": "nodemon --exec ts-node src/index.ts",
"format:eslint": "npm run lint:eslint -- --fix",
"format:prettier": "npm run lint:prettier -- -w",
"format": "run-s -l format:*",
"lint:eslint": "eslint --max-warnings=0 \"**/*.{js,jsx,ts,tsx}\"",
"lint:prettier": "prettier --check --cache \"**/*.{css,js,json,jsx,md,ts,tsx,yml}\"",
"lint:tsc": "tsc --noEmit",
"lint": "run-p -l lint:*",
"prebuild": "run-p clean lint:tsc",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggplants/popcat.git"
},
"keywords": [
"popcat"
],
"author": "eggplants",
"license": "MIT",
"bugs": {
"url": "https://github.com/eggplants/popcat/issues"
},
"homepage": "https://github.com/eggplants/popcat#readme",
"dependencies": {
"ansi-colors": "^4.1.3",
"express": "^4.18.2",
"morgan": "^1.10.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.11",
"@types/express": "^4.17.14",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.7",
"@types/ramda": "^0.28.18",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
}
}