-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.91 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
{
"name": "bartender",
"version": "1.0.0",
"description": "Product database API",
"main": "index.js",
"scripts": {
"generate-api": "widdershins --language_tabs 'javascript:Javascript' -t atom-one-dark --summary openapi.yaml -o api.md",
"linter:prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"linter:eslint": "eslint --ext .js,.ts .",
"lint": "npm-run-all linter:**",
"migrate": "ts-node migrator/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TotoTheDragon/Bartender.git"
},
"keywords": [
"store",
"api",
"product",
"database"
],
"author": "TotoTheDragon",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/TotoTheDragon/Bartender/issues"
},
"homepage": "https://github.com/TotoTheDragon/Bartender#readme",
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/convert-units": "^2.3.5",
"@types/dotenv": "^8.2.0",
"@types/gtin": "^0.3.0",
"@types/node": "^18.7.5",
"@types/pg": "^8.6.5",
"@types/pg-format": "^1.0.2",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"npm-run-all": "^4.1.5",
"postgres-migrations": "^5.3.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"widdershins": "^4.0.1"
},
"dependencies": {
"ajv": "^8.11.0",
"convert-units": "^2.3.4",
"dotenv": "^16.0.1",
"fastify": "^4.4.0",
"gtin": "^1.0.2",
"percentile": "^1.6.0",
"pg": "^8.7.3",
"pg-format": "^1.0.4",
"winston": "^3.8.1"
}
}