-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "boilerplate-typescript-backend",
"version": "1.0.0",
"main": "build/server.js",
"author": "Antoine POUS",
"license": "MIT",
"private": true,
"engines": {
"node": "18",
"yarn": "1.22"
},
"scripts": {
"build": "tsc",
"eslint": "eslint src --ext .ts",
"prepare": "husky install",
"preinstall": "npx only-allow yarn",
"start": "node build/server.js",
"test": "NODE_ENV=test jest",
"watch": "ts-node-dev src/server.ts"
},
"devDependencies": {
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"husky": "^7.0.4",
"jest": "^28.0.3",
"ts-jest": "^28.0.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.4",
"validate-branch-name": "^1.3.0"
},
"dependencies": {
"@fastify/autoload": "^4.0.1",
"@fastify/sensible": "^4.0.0",
"dotenv": "^16.0.0",
"envalid": "^7.3.1",
"fastify": "^3.29.0",
"fastify-plugin": "^3.0.1",
"only-allow": "^1.1.0"
},
"validate-branch-name": {
"pattern": "^(feat|fix|chore)/([\\d+])-([\\w-]+)$",
"errorMsg": "Allowed branch name format: <feat|fix|chore>/<issueID>-my-branch-name"
}
}