-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.55 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
{
"type": "module",
"name": "lib-ff",
"description": "This project was bootstrapped with Fastify-CLI.",
"version": "1.2.3",
"main": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build:ts && tsc -p test/tsconfig.json && c8 tap --ts \"test/**/*.test.ts\"",
"start": "npm run build:ts && fastify start -l info dist/app.js",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"dev": "npm run build:ts && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"npm:watch:ts\" \"npm:dev:start\"",
"dev:start": "fastify start --ignore-watch=.ts$ -w -l info -P dist/app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.0.0",
"@fastify/cors": "^8.4.1",
"@fastify/multipart": "^8.0.0",
"@fastify/sensible": "^5.0.0",
"@fastify/static": "^6.12.0",
"@prisma/client": "^5.8.1",
"cheerio": "^1.0.0-rc.12",
"fastify": "^4.0.0",
"fastify-cli": "^5.9.0",
"fastify-plugin": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.4.4",
"@types/tap": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"c8": "^7.13.0",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"fastify-tsconfig": "^2.0.0",
"prisma": "^5.8.1",
"tap": "^16.1.0",
"ts-node": "^10.4.0",
"typescript": "^5.2.2"
},
"tap": {
"node-arg": [
"--no-warnings",
"--experimental-loader",
"ts-node/esm"
],
"coverage": false
}
}