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": "server",
"version": "1.0.0",
"private": true,
"author": "HampusMat",
"license": "MIT",
"scripts": {
"dev": "yarn tsc && concurrently -k --kill-others-on-fail \"yarn tsc --watch \" \"nodemon --exitcrash dist/app.js\""
},
"dependencies": {
"date-fns": "^2.22.1",
"fastify": "^3.17.0",
"fastify-static": "^4.2.2",
"js-yaml": "^4.1.0",
"nodegit": "^0.27.0",
"nodemon": "^2.0.7",
"tar-stream": "^2.2.0",
"whatwg-url": "^8.5.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.1",
"@types/node": "^15.12.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",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-node": "^11.1.0",
"typescript": "^4.3.2"
}
}
|