-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.53 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
45
46
47
48
49
50
51
{
"name": "validate-ticket",
"version": "1.0.0",
"description": "Valid bank slipt and dealership slip",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "ts-node-dev ./server.ts",
"test": "jest --watch --noStackTrace",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:all": "jest --watchAll --noStackTrace"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeoInCode/validate-ticket.git"
},
"author": "Leonardo Mendes",
"license": "ISC",
"bugs": {
"url": "https://github.com/LeoInCode/validate-ticket/issues"
},
"homepage": "https://github.com/LeoInCode/validate-ticket#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
},
"dependencies": {
"date-fns": "^2.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"express": "^4.17.3",
"g": "^2.0.1",
"supertest": "^6.2.2",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.14.1"
}
}