-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 926 Bytes
/
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
{
"name": "covidvobcich-api",
"version": "2.2.0",
"main": "lib/index.js",
"author": "Petr Hovorka",
"license": "MIT",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"build": "tsc",
"dev": "yarn run build && node lib/index.js",
"start": "node lib/index.js",
"release": "yarn version",
"version": "yarn changelog && code CHANGELOG.md --wait && git add CHANGELOG.md",
"changelog": "gitmoji-changelog"
},
"dependencies": {
"@types/diacritics": "^1.3.1",
"apollo-server-express": "^3.5.0",
"diacritics": "^1.3.0",
"express": "^4.17.1",
"firebase-admin": "^10.0.0",
"fuse.js": "^6.4.6",
"graphql": "^16.0.1",
"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"
}
}