-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.46 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "epdv-api",
"version": "1.4.3",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"postbuild": "cp -rv src/docs dist/src",
"prepare": "husky install",
"build-start": "npm run build && npm run start",
"start": "node dist/src/index.js",
"start:dev": "ts-node-dev src/index.ts",
"test": "npm run test:unit && npm run test:functional",
"test:unit": "jest --projects ./test/unit --runInBand --coverage --verbose",
"test:functional": "jest --projects ./test/functional --runInBand --coverage --verbose",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "eslint ./src ./test --ext .ts --fix",
"style:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
"style:fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"pretty-quick": "pretty-quick --staged"
},
"engines": {
"node": "14.16.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniellferreira/dev3-api.git"
},
"author": "Daniel Lopes Ferreira",
"license": "MIT",
"bugs": {
"url": "https://github.com/daniellferreira/dev3-api/issues"
},
"homepage": "https://github.com/daniellferreira/dev3-api#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/module-alias": "^2.0.0",
"@types/mongoose": "^5.10.3",
"@types/mongoose-paginate-v2": "^1.3.9",
"@types/nock": "^11.1.0",
"@types/node": "^14.14.20",
"@types/stripe": "^8.0.417",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.17.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"nock": "^13.0.6",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@overnightjs/core": "^1.7.5",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongoose-paginate-v2": "^1.3.9",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongo-tenant": "^1.8.0",
"mongoose": "^5.11.12",
"mongoose-paginate-v2": "^1.3.17",
"stripe": "^8.150.0",
"util": "^0.12.4"
}
}