-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "covidvobcich-importer",
"version": "1.2.2",
"main": "lib/index.js",
"author": "Petr Hovorka",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"build": "tsc",
"dev": "yarn run build && node lib/index.local.js",
"start": "node lib/index.js",
"deploy": "yarn build && (yarn deploy:app)",
"deploy:app": "./bin/deploy.sh",
"release": "yarn version",
"version": "yarn changelog && code CHANGELOG.md --wait && git add CHANGELOG.md",
"changelog": "gitmoji-changelog"
},
"engines": {
"node": ">= 14.0.0"
},
"dependencies": {
"@types/better-sqlite3": "^7.4.1",
"@types/lodash": "^4.14.177",
"axios": "^0.24.0",
"better-sqlite3": "^7.4.5",
"express": "^4.17.1",
"fast-csv": "^4.3.6",
"firebase-admin": "^10.0.0",
"lodash": "^4.17.21",
"typescript": "^4.5.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"gitmoji-changelog": "^2.2.1"
}
}