forked from resuminator/resuminator-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "resuminator-server",
"version": "0.2.1",
"description": "Backend Service for Resuminator",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts",
"start": "tsc && node dist/index.js",
"dev": "nodemon --config nodemon.json ./src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/resuminator/resuminator-server.git"
},
"keywords": [
"TypeScript",
"NodeJS",
"ExpressJS"
],
"author": "Resuminator Authors",
"license": "GPLv3",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase-admin": "^9.11.0",
"form-data": "^4.0.0",
"joi": "^17.4.2",
"mongoose": "^5.13.2",
"posthog-node": "^1.1.3"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.32.0",
"nodemon": "^2.0.7",
"ts-node": "^10.2.1",
"typescript": "^4.3.2"
}
}