-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "in8-challenge",
"version": "1.0.0",
"description": "Api desenvolvida para IN8",
"main": "src/server.ts",
"scripts": {
"build": "npx tsc",
"start": "node ./build/server.js",
"dev": "ts-node-dev --ignore-watch node_modules --exit-child src/server",
"lint": "eslint ./src --ext .ts",
"test": "mocha -r ts-node/register ./src/__tests__/*.{test,spec}.ts -t 10000 --exit",
"test:coverage": "nyc npm run test"
},
"keywords": [],
"author": "Ederson Lucas",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/sinon": "^10.0.13",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"puppeteer": "^19.5.2",
"swagger-ui-express": "^4.6.0"
}
}