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
|
{
"name": "server",
"version": "1.0.0",
"private": true,
"author": "HampusMat",
"license": "MIT",
"scripts": {
"dev": "nodemon src/server.ts",
"start": "ts-node src/server.ts"
},
"dependencies": {
"cache-manager": "^3.4.4",
"date-fns": "^2.22.1",
"fastify": "^3.17.0",
"fastify-static": "^4.2.2",
"nodegit": "^0.27.0",
"openpgp": "^5.0.0-5",
"tar-stream": "^2.2.0",
"whatwg-url": "^9.0.0"
},
"devDependencies": {
"@types/cache-manager": "^3.4.2",
"@types/js-yaml": "^4.0.1",
"@types/node": "^16.3.1",
"@types/nodegit": "^0.27.2",
"@types/tar-stream": "^2.2.0",
"@types/whatwg-url": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"api": "^1.0.0",
"eslint": "^7.31.0",
"eslint-config-base": " ^1.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-tsdoc": "^0.2.14",
"nodemon": "^2.0.12",
"ts-node": "^10.1.0",
"typescript": "^4.3.2"
}
}
|