-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·57 lines (57 loc) · 1.77 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
{
"name": "owo.vc",
"version": "2.0.0",
"author": "katlyn",
"scripts": {
"clean": "rimraf dist",
"build": "npm-run-all clean build:compile build:alias-files",
"build:compile": "tsc",
"build:alias-files": "tsc-alias",
"build:watch": "concurrently 'tsc --watch --preserveWatchOutput' 'tsc-alias -w'",
"lint": "eslint --ext .js --ext .ts src static",
"start": "node --enable-source-maps dist/index.js",
"start:dev": "concurrently npm:build:watch npm:start:watch",
"start:watch": "dotenv -- node-dev --enable-source-maps --respawn dist/index.js",
"migrate": "prisma migrate deploy"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/node": "^18.15.10",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"concurrently": "^7.6.0",
"dom-serializer": "^2.0.0",
"domelementtype": "^2.3.0",
"domhandler": "^5.0.3",
"domutils": "^3.0.1",
"dotenv-cli": "^7.1.0",
"eslint": "^8.36.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"htmlparser2": "^8.0.2",
"node-dev": "^8.0.0",
"npm-run-all": "^4.1.5",
"pino-pretty": "^10.0.0",
"prisma": "^4.11.0",
"rimraf": "^4.4.1",
"tsc-alias": "^1.8.4",
"typescript": "^5.0.2",
"undici": "^5.21.0"
},
"dependencies": {
"@fastify/cors": "^8.2.1",
"@fastify/static": "^6.10.0",
"@fastify/type-provider-typebox": "^2.4.0",
"@prisma/client": "^4.11.0",
"@sinclair/typebox": "^0.25.9",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"env-verifier": "^1.5.0",
"express": "^4.18.2",
"fastify": "^4.15.0",
"http-errors": "^2.0.0",
"ioredis": "^5.3.1",
"isbot": "^3.6.7"
}
}