This repository has been archived by the owner on Jan 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "klips-api",
"version": "0.0.1",
"description": "The KLIPS API",
"repository": {
"type": "git",
"url": "git+https://github.com/klips-project/klips-api.git"
},
"license": "MIT",
"author": "terrestris GmbH & Co. KG <[email protected]>, meggsimum <[email protected]>",
"main": "./src/index.js",
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json",
"clean": "rimraf ./dist",
"lint": "eslint --ext .ts . && tsc --build",
"lint-fix": "eslint --fix --ext .ts .",
"test": "npm run typecheck && npm run lint",
"typecheck": "tsc -p tsconfig.json --noEmit",
"watch": "dotenv -e dev.env -- cross-var nodemon -e ts,yaml,json --watch src src/index.ts"
},
"dependencies": {
"@types/fs-extra": "^9.0.13",
"ajv": "^8.11.0",
"amqplib": "^0.9.0",
"dayjs": "^1.11.3",
"express": "^4.18.1",
"express-basic-auth": "^1.2.1",
"fs-extra": "^10.1.0",
"helmet": "^5.0.2",
"pino": "^7.11.0",
"pino-pretty": "^7.6.1",
"swagger-ui-express": "^4.5.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@terrestris/eslint-config-typescript": "^2.0.0",
"@types/amqplib": "^0.8.2",
"@types/express": "^4.17.13",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"cross-var": "^1.1.0",
"dotenv": "^16.0.2",
"dotenv-cli": "^6.0.0",
"eslint": "^8.2.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"engines": {
"node": ">=16.0.0"
}
}