-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.01 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "splice-catalog",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"build": "tsc --project ./tsconfig.json",
"dev": "yarn nodemon --watch src --exec 'ts-node' -r tsconfig-paths/register src/index.ts",
"start": "node dist/index.ts",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**.ts --fix",
"pretty": "prettier . --write",
"gulp": "gulp",
"typeorm": "typeorm-ts-node-commonjs -d src/db/data-source.ts",
"typeorm-cli": "ts-node",
"migrate:show": "yarn typeorm migration:show",
"migrate:create": "node scripts/migration-create.js",
"migrate": "yarn typeorm migration:run",
"migrate:revert": "yarn typeorm migration:revert",
"import:ontology": "ts-node src/utils/import-ontology-data.ts"
},
"dependencies": {
"@types/cors": "^2.8.16",
"@types/ejs": "^3.1.5",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.12",
"axios": "^1.7.9",
"bunyan": "^1.8.15",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-openid-connect": "^2.17.1",
"gulp": "^5.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"lemmatizer": "^0.0.1",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.12.0",
"natural": "^8.0.1",
"pg": "^8.13.1",
"reflect-metadata": "^0.2.2",
"socket.io": "^4.8.1",
"string-similarity": "^4.0.4",
"typeorm": "^0.3.20",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.10",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.18.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
},
"resolutions": {
"@types/express": "^4.17.21"
}
}