generated from ztemplates/typescript-eslint-prettier
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "zpm-server",
"version": "0.0.2",
"description": "ZHZX Printer Management Server",
"repository": "git@github.com:zhzxdev/zpm-server.git",
"author": "ZhangZisu <i@zzs1.cn>",
"license": "MIT",
"private": true,
"main": "build/index.js",
"devDependencies": {
"@types/fs-extra": "^9.0.6",
"@types/lru-cache": "^5.1.0",
"@types/node": "^14.14.22",
"@types/pino": "^6.3.5",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^7.1.0",
"fastify-swagger": "^3.5.0",
"pino-pretty": "^4.3.0",
"prettier": "^2.1.2",
"typescript": "^4.1.3"
},
"dependencies": {
"dotenv": "^8.2.0",
"fastify": "^3.10.1",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.0",
"fastify-static": "^3.4.0",
"fluent-json-schema": "^2.0.3",
"fs-extra": "^9.1.0",
"lru-cache": "^6.0.0",
"pino": "^6.11.0",
"reflect-metadata": "^0.1.13",
"semver": "^7.3.4",
"socket.io": "^3.1.0",
"sqlite3": "^5.0.1",
"typeorm": "^0.2.30"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"utf-8-validate": "^5.0.4"
},
"scripts": {
"lint": "yarn eslint . && yarn prettier --check .",
"lint:fix": "yarn eslint . --fix && yarn prettier --write .",
"build": "yarn tsc",
"build:watch": "yarn tsc --watch"
}
}