-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "markdown-thesis",
"version": "1.0.0",
"description": "",
"main": "api/server.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"dev": "nodemon",
"start": "node ./dist/server.js",
"build": "tsc && tsc-alias",
"build:watch": "tsc -w & tsc-alias -w"
},
"author": "André Kuhlmann <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.24.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"octokit": "^1.7.0",
"pdf-parse": "^1.1.1",
"prettier": "^2.4.1"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/dotenv-safe": "^8.1.2",
"@types/express": "^4.17.13",
"@types/node": "^16.10.3",
"@types/pdf-parse": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/node": "^1.12.1",
"dotenv-safe": "^8.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-sonarjs": "^0.10.0",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"tsc-alias": "^1.3.10",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.3"
}
}