-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.09 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.09 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "vcl-api-service",
"version": "0.2.0",
"description": "ReSTful API for CoLa VCL",
"author": "Harald Schwab",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://mode.fh-joanneum.at/cola/vcl/api-service"
},
"main": "dist/server.js",
"scripts": {
"build": "npm run clean:dist && tsc",
"build:dev": "tsc --p tsconfig.dev.json",
"clean:dist": "rm -rf dist",
"lint": "tsc --noEmit && eslint \"src/**/*.{js,ts}\" --quiet",
"postbuild": "copyup -F -a \"src/{assets,public}/**/*\" -e \"**/.git*\" dist",
"prebuild": "npm run lint",
"start": "node .",
"start:dev": "nodemon",
"test": "jest --silent",
"test:coverage": "jest --coverage --silent",
"test:watch": "jest --watchAll --silent"
},
"_moduleAliases": {
"@root": ".",
"@app": "dist/app",
"@assets": "dist/assets",
"@config": "dist/config",
"@controller": "dist/app/controller",
"@middleware": "dist/app/middleware",
"@model": "dist/app/model",
"@routes": "dist/app/routes",
"@util": "dist/util",
"@pack": "package.json"
},
"keywords": [],
"dependencies": {
"binaryextensions": "^4.18.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"handlebars": "^4.7.7",
"jszip": "^3.10.1",
"module-alias": "^2.2.2",
"sharp": "^0.32.0",
"textextensions": "^5.15.0",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/eslint": "^8.37.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/sharp": "^0.31.1",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"copyfiles": "^2.4.1",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.1"
}
}