This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.64 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
{
"name": "elements-reference-app-backend",
"version": "0.0.1",
"description": "Affinidi Elements. Backend-proxy-service for Reference Application",
"author": "affinidi.com",
"main": "dist/index.js",
"scripts": {
"prestart": "npm install && npm run build",
"build": "tsc",
"start:prod": "node ./dist/index.js",
"start:dev": "ts-node src/index.ts",
"start": "nodemon --exec 'npm run start:dev' | pino-pretty",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"checkLicenses": "license-checker --production --failOn 'AGPL 3.0;LGPL 2.1'"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-http-proxy": "^1.6.3",
"winston": "^3.8.2"
},
"devDependencies": {
"@affinidi/eslint-config": "^2.0.0-beta.0",
"@affinidi/prettier-config": "^2.0.0-beta.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-http-proxy": "^1.6.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"license-checker": "25.0.1",
"nodemon": "^2.0.20",
"pino-pretty": "^9.1.1",
"prettier": "^2.3.2",
"ts-node": "^10.9.1",
"typescript": "^4.3.5"
}
}