-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
{
"name": "fastify-nodejs-boilerplate",
"version": "1.0.0",
"main": "build/index.js",
"license": "MIT",
"author": "Emmanuel Fallancy <[email protected]> (https://emmanuel.dev)",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.{ts,js}'",
"start": "yarn build && node build/index.js",
"start:dev": "nodemon --watch src -e ts --exec 'ts-node src/index.ts'",
"test": "jest"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"@types/uuid": "^3.4.7",
"fastify": "^2.15.1",
"fastify-cors": "^3.0.1",
"fastify-helmet": "^3.0.2",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/hapi__joi": "^16.0.12",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.0",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"supertest": "^4.0.2",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"lint-staged": {
"*.{ts,js}": [
"pretty-quick",
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}