-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.62 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
{
"name": "typescript-fastify-backend-boilerplate",
"version": "0.0.1",
"description": "A boilerplate for Node.js Fastify apps with TypeScript and test/build pipeline. Tailored for backend services.",
"scripts": {
"build": "rimraf dist && tsc && babel dist --out-dir dist",
"debug": "cross-env NODE_ENV=development tsnd -r tsconfig-paths/register --inspect --respawn --transpile-only src/server.ts",
"test": "jest --detectOpenHandles --coverage --verbose",
"watch-test": "npm run test -- --watchAll"
},
"repository": {
"type": "git",
"url": "https://github.com/Devtography/typescript-backend-starter"
},
"keywords": [
"Node.js",
"Fastify",
"TypeScript",
"jest"
],
"author": "Wing Chau",
"license": "MIT",
"dependencies": {
"fastify": "^3.17.0",
"fastify-autoload": "^3.7.1",
"fastify-cors": "^6.0.1"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-plugin-module-resolver": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.28.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.4",
"pino-pretty": "^5.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"ts-node-dev": "^1.1.6",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.2"
}
}