generated from K4CZP3R/expressjs-api-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 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
{
"name": "@k4czp3r/dutch-fuel-prices-api",
"version": "1.0.0",
"description": "Wrapper with OCR which returns the Dutch fuel prices.",
"main": "./src/index.ts",
"scripts": {
"dev": "ts-node-dev --respawn --pretty --transpile-only ./src/index.ts",
"try": "ts-node-dev --respawn --pretty --transpile-only ./src/try.ts",
"generateKeys": "ts-node-dev --respawn --pretty --transpile-only ./src/scripts/generate-keys.script.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/K4CZP3R/expressjs-api-boilerplate.git"
},
"keywords": [],
"author": "",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.177",
"@types/node": "^16.11.7",
"@types/uuid": "^8.3.1",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"dependencies": {
"axios": "^0.27.2",
"check-password-strength": "^2.0.3",
"cors": "^2.8.5",
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"get-caller-file": "^2.0.5",
"helmet": "^4.6.0",
"jimp": "^0.16.1",
"lodash": "^4.17.21",
"mongoose": "^6.0.15",
"pg": "^8.7.1",
"tesseract.js": "^2.1.5",
"typeorm": "^0.2.41",
"uuid": "^8.3.2"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/K4CZP3R/dutch-fuel-prices-api/issues"
},
"homepage": "https://github.com/K4CZP3R/dutch-fuel-prices-api#readme"
}