-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.24 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
{
"name": "ts-backend-template",
"version": "1.0.0",
"author": "Marcos Paulo Luiz",
"license": "MIT",
"repository": "https://github.com/mpluiz/ts-backend-template",
"scripts": {
"start": "node --require ts-node/register src/index.ts",
"test": "npx jest --passWithNoTests --runInBand --no-cache",
"test:verbose": "npx jest",
"test:watch": "npm run test -- --watch",
"test:ci": "npm run test -- --coverage"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^4.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^1.11.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@types/mongoose": "^5.11.97",
"apollo-server": "^3.11.1",
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
"mongoose": "^6.8.3"
}
}