-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.42 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
{
"name": "node-server",
"version": "1.0.1",
"description": "",
"main": "src/server.ts",
"scripts": {
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"start": "cross-env NODE_ENV=production node dist/index.js",
"start:ts": "esno src/index.ts",
"dev": "run-p build:watch dev:server",
"dev:server": "nodemon dist/index.js",
"build:watch": "tsup --watch",
"build": "rimraf dist && tsup --minify",
"lint": "eslint src _tests_ --ext .js,.ts --fix",
"sls:deploy": "sls deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cross-env": "^7.0.3",
"flash-wolves": "^0.2.2-beta.0",
"mongodb": "^3.6.4",
"mysql": "^2.18.1",
"qiniu": "^7.3.2",
"redis": "^3.0.2"
},
"devDependencies": {
"@types/mongodb": "^3.6.20",
"@types/mysql": "^2.15.15",
"@types/node": "^16.11.25",
"@types/redis": "^2.8.28",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@vitest/ui": "^0.9.2",
"axios": "^0.26.1",
"c8": "^7.11.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-todo-ddl": "^1.1.1",
"esno": "^0.14.1",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tsup": "^5.11.13",
"typescript": "^4.5.5",
"vitest": "^0.9.2"
}
}