-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) 路 1.32 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) 路 1.32 KB
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": "zrp-pokemon-api",
"version": "1.0.0",
"main": "index.js",
"author": "Leonardo Jesus <leonardojesus02@outlook.com>",
"license": "MIT",
"scripts": {
"dev": "yarn nodemon",
"lint": "eslint . --ext .ts",
"start": "node dist/index.js",
"build": "tsc -p ./tsconfig.build.json",
"test": "jest --runInBand --passWithNoTests --silent --noStackTrace --forceExit",
"test:unit": "yarn test -- --watch -c ./jest.unit.config.js",
"test:integration": "yarn test --watch",
"coverage": "jest --coverage"
},
"dependencies": {
"@types/supertest": "^2.0.12",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"reflect-metadata": "^0.1.13",
"supertest": "^6.3.3"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^27.0.3",
"@types/node": "^14.17.5",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.4.5",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-jest": "^27.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.5.4"
}
}