-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.6 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.6 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
{
"name": "cherry",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run build:development && tsc -p test/tsconfig.json && tap --ts \"test/**/*.test.ts\" --jobs=1",
"start": "fastify start -l info dist/src/app.js",
"dev": "fastify start --ignore-watch='.ts$ db.sqlite src' -w -l info -P dist/src/app.js",
"start:dev": "npm run build:development && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"npm:watch\" \"npm:dev\"",
"build:development": "cp .env.development .env && tsc && cp server.js dist/src/server.js",
"build:staging": "cp .env.staging .env && tsc && cp server.js dist/src/server.js",
"build:production": "cp .env.production .env && tsc && cp server.js dist/src/server.js",
"watch": "tsc -w"
},
"keywords": [],
"author": "Eugenio Ciaglia <eugenio.ciaglia@gmail.com>",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.7.1",
"@fastify/cors": "^8.2.1",
"@fastify/sensible": "^5.2.0",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.7.0",
"axios": "^1.4.0",
"better-sqlite3": "^8.2.0",
"close-with-grace": "^1.1.0",
"dotenv": "^16.0.3",
"fastify": "^4.15.0",
"fastify-plugin": "^4.5.0"
},
"devDependencies": {
"@types/node": "^20.1.4",
"@types/tap": "^15.0.8",
"concurrently": "^8.0.1",
"fastify-cli": "^5.7.1",
"fastify-tsconfig": "^1.0.1",
"tap": "^16.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}