-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "typescript-fastify-starter",
"version": "1.0.0",
"description": "Starter for fastify with TypeScript",
"main": "index.js",
"scripts": {
"watch": "concurrently --kill-others \"npm run build -- --watch\" \"nodemon --inspect lib/server.js\" ",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --resolveJsonModule --preserveWatchOutput"
},
"repository": {
"type": "git",
"url": "https://github.com/edvardchen/typescript-fastify-starter.git"
},
"keywords": [
"airpay",
"admin",
"auth",
"gateway"
],
"author": "edvardchen",
"license": "ISC",
"dependencies": {
"@types/serve-static": "^1.13.2",
"fastify": "^2.1.0",
"fastify-cookie": "^3.0.2",
"googleapis": "^39.1.0",
"serve-static": "^1.13.2"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/node": "^11.13.0",
"concurrently": "^4.1.0",
"husky": "^1.3.1",
"nodemon": "^1.18.10",
"typescript": "^3.4.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}