-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.26 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
{
"name": "cartlify",
"repository": {
"type": "git",
"url": "git+https://github.com/suchy/cartlify.git"
},
"author": "Mateusz Suchoń <[email protected]>",
"version": "0.1.0",
"scripts": {
"start:production": "node ./dist/interfaces/api/server.js",
"start": "ts-node-dev --rs --pretty ./src/interfaces/api/server.ts",
"build": "npm run test && npm run compile",
"compile": "tsc",
"docker:build": "docker build . -t",
"test": "jest --testPathIgnorePatterns=./src/interfaces",
"test:watch": "npm run test -- --watch",
"test:all": "jest",
"test:api": "jest ./src/interfaces/api",
"test:api:watch": "npm run test:api -- --watch",
"test:api:exposition": "jest ./src/interfaces/api/tests/exposition",
"test:api:exposition:watch": "npm run test:api:exposition -- --watch",
"test:coverage": "jest --coverage"
},
"engines": {
"node": "14",
"npm": "6"
},
"main": "node dist/scripts/start.js",
"dependencies": {
"ajv": "^6.12.6",
"awilix": "^4.2.6",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cls-hooked": "^4.2.2",
"cls-rtracer": "^2.4.0",
"config": "^3.3.2",
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-openapi-validator": "^4.2.1",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.10.1",
"mongodb": "^3.6.2",
"swagger-jsdoc": "^4.3.0",
"swagger-ui-express": "^4.1.4",
"uuid": "^8.3.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@types/bcryptjs": "^2.4.2",
"@types/config": "^0.0.36",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"@types/express-serve-static-core": "^4.17.13",
"@types/glob": "^7.1.3",
"@types/helmet": "0.0.48",
"@types/jest": "^26.0.14",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.5.28",
"@types/multer": "^1.4.4",
"@types/node": "^14.11.10",
"@types/supertest": "^2.0.10",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"jest": "^26.5.3",
"supertest": "^6.0.1",
"ts-jest": "^26.4.1",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.3"
},
"private": true
}