This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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": "ucsf-riff",
"version": "1.0.0",
"description": "Riff API for UCSF",
"main": "index.ts",
"license": "ISC",
"engines": {
"node": ">=18.10.0",
"npm": ">=9.4.1"
},
"scripts": {
"build": "npm run clean; tsc ",
"build:run": "npm run build; npm start",
"clean": "rm -rf ./dist/* ",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"migrate": "node-pg-migrate",
"dev": "nodemon",
"start": "ts-node ./src/index.ts",
"start:prd": "npm run migrate up; node ./dist/src/index.js",
"test": "jest --silent"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-errors": "^1.7.2",
"http-status-codes": "^2.1.4",
"keycloak-connect": "^15.0.2",
"node-pg-migrate": "^6.0.0",
"pg": "^8.7.1",
"sequelize": "^6.14.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.1",
"@types/node": "^18.10.0",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.0",
"sequelize-cli": "^6.4.1",
"supertest": "^6.1.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}