-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.9 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
58
59
60
{
"name": "forest-fastify",
"version": "0.0.1",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "app.ts",
"directories": {
"test": "test"
},
"scripts": {
"build:ts": "tsc",
"test": "npm run build:ts && tsc -p test/tsconfig.json && tap --ts test/**/*.test.ts",
"dev": "tsc && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"tsc -w\" \"fastify start --ignore-watch='node_modules .git logs/error.log .ts$' -w -l info -P dist/app.js\"",
"start": "npm run build:ts && fastify start -l info dist/app.js",
"format": "prettier --config .prettierrc 'src/**/*.ts' 'test/**/*.ts' --write",
"check-format": "prettier --config .prettierrc 'src/**/*.ts' 'test/**/*.ts' -c",
"lint": "eslint . --ext .ts"
},
"keywords": [
"forest",
"fastify"
],
"author": "mtmarco87",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"cors": "^2.8.5",
"fastify": "^3.27.4",
"fastify-autoload": "^3.10.0",
"fastify-cli": "^2.15.0",
"fastify-express": "^0.3.3",
"fastify-jwt": "^4.1.3",
"fastify-plugin": "^3.0.1",
"fastify-sensible": "^3.1.2",
"fastify-tsconfig": "^1.0.1",
"forest-express-mongoose": "^8.6.5",
"mongoose": "^6.2.6",
"require-all": "^3.0.0",
"typescript": "^4.6.2",
"@types/cors": "^2.8.12",
"@types/require-all": "^3.0.3",
"@types/forest-express-mongoose": "^7.5.2"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.8",
"@types/sinon": "^10.0.11",
"@types/tap": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"concurrently": "^7.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"sinon": "^13.0.1",
"tap": "^15.1.6",
"ts-node": "^10.4.0"
}
}