-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "fastify-starter",
"version": "0.0.1",
"description": "Fastify + Typescript starter",
"main": "dist/index.js",
"author": "Adam Horodyski",
"license": "MIT",
"private": false,
"scripts": {
"start:dev": "nodemon src/index.ts",
"start:debug": "nodemon --config nodemon-debug.json",
"start:prod": "node -r tsconfig-paths/register dist/index",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json && tsc-alias -s",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"fastify": "^3.12.0"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"dotenv": "^8.2.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "4.3.8",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"tsc-alias": "^1.3.7",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint"
}
}
}