-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.08 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "fraudguard-backend",
"description": "",
"version": "1.0.0",
"author": "Christopher Barnes",
"main": "src/index.ts",
"test command": "npm t",
"private": false,
"scripts": {
"badge": "npx coverage-badger -e 90 -g 65 -r coverage/clover.xml -d src/assets/",
"build": "tsc",
"clean": "npx rimraf ./dist && npx rimraf server.*",
"docker:build": "docker build -t eu.gcr.io/fraudguard/backend:latest .",
"docker:push": "docker push eu.gcr.io/fraudguard/backend:latest",
"linter": "npx eslint src/**/*.ts -c ./.eslintrc.yml --fix",
"predocker": "npm run build",
"prettier": "npx prettier --write src/**/*.ts",
"start:dev": "tsnd --respawn src/index.ts | pino-pretty -c -t",
"start": "node dist/src/index.js | pino-pretty -c -t",
"test": "npx jest --detectOpenHandles --coverage",
"tsc": "npx tsc",
"docs": "jsdoc -c jsdoc.json"
},
"keywords": [
"Node",
"npm",
"Express",
"TypeScript",
"ESLint",
"REST",
"MongoDB",
"mongoose",
"CORS",
"Jest",
"ts-jest",
"fetch",
"Chai"
],
"license": "GNU-GPL3",
"git repository": "https://github.com/fraudguard/FraudGuard-Backend",
"homepage": "https://www.barnes.biz",
"directories": {
"doc": "doc",
"test": "test"
},
"files": [
"dist",
"package.json",
".env",
".gitignore",
".npmrc",
"tsconfig.json",
"scripts"
],
"dependencies": {
"@types/swagger-jsdoc": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"axios": "^0.21.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint": "^7.25.0",
"express": "^4.17.1",
"express-pino-logger": "^6.0.0",
"helmet": "^4.4.1",
"http": "*",
"ip": "^1.1.5",
"mongoose": "^5.11.18",
"pino": "^6.11.1",
"pino-pretty": "^4.5.0",
"release": "^6.3.0",
"strip-indent": "^3.0.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"type": "^2.3.0"
},
"devDependencies": {
"@jest/globals": "^26.6.2",
"@types/chai": "^4.2.17",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-pino-logger": "^4.0.2",
"@types/ip": "^1.1.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@types/node-fetch": "^2.5.10",
"@types/pino": "^6.3.6",
"@types/rimraf": "^3.0.0",
"@types/shelljs": "^0.8.8",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"better-docs": "^2.3.2",
"chai": "^4.3.4",
"copyfiles": "^2.4.1",
"coverage-badger": "^1.0.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"jest": "^27.0.4",
"jest-circus": "^26.6.3",
"jest-coverage-shield": "^1.1.2",
"jest-each": "^26.6.2",
"jest-junit": "^12.0.0",
"jsdoc": "^3.6.7",
"node-fetch": "^2.6.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"ts-jest": "^27.0.0-next.12",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.2"
}
}