-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "fhw-web-v2",
"version": "1.0.0",
"description": "Framework zur Übung 'Web-Anwendungen/-Technologien' an der Fachhochschule Wedel",
"main": "dist/index.js",
"scripts": {
"tsc": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./dev/index.ts",
"yannick": "ts-node-dev --respawn --transpileOnly ./yannick/server.js",
"test": "jest",
"prod": "tsc && node ./dist/index.js"
},
"author": "[mpg] Marian P. Gajda",
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.11",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.4",
"@types/jest": "^25.1.4",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.5",
"chai": "^4.2.0",
"jest": "^25.2.4",
"mocha": "^7.1.1",
"ts-jest": "^25.3.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.2",
"better-sqlite3": "^6.0.1",
"colors": "^1.4.0",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"handlebars": "^4.7.3",
"promised-handlebars": "^2.0.1",
"sqlite3": "^4.1.1",
"url": "^0.11.0",
"uuid": "^7.0.2",
"yaml": "^1.9.2"
}
}