-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.21 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@openforis/arena-server",
"author": {
"name": "OpenForis",
"email": "openforis.arena@gmail.com"
},
"version": "1.3.20",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@machinomy/types-node-db-migrate": "^0.0.2",
"@types/bcryptjs": "^3.0.0",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.10",
"@types/db-migrate-base": "^0.0.15",
"@types/express": "^5.0.6",
"@types/express-fileupload": "^1.5.1",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^26.0.1",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/pdfkit": "^0.17.6",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"copyfiles": "^2.4.1",
"dotenv": "^17.4.2",
"eslint": "^10.6.0",
"husky": "9.1.7",
"jest": "^30.4.2",
"lint-staged": "^17.0.8",
"npm-run-all": "^4.1.5",
"prettier": "3.8.3",
"rimraf": "^6.1.3",
"supertest": "^7.2.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2"
},
"dependencies": {
"@godaddy/terminus": "^4.12.1",
"@openforis/arena-core": "^1.3.8",
"bcryptjs": "^3.0.3",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"db-migrate": "^0.11.14",
"db-migrate-pg": "^1.5.2",
"docx": "^9.7.1",
"express": "^5.2.1",
"express-fileupload": "^1.5.2",
"express-rate-limit": "^8.5.2",
"image-size": "^2.0.2",
"jsonwebtoken": "^9.0.3",
"jszip": "^3.10.1",
"lodash.throttle": "^4.1.1",
"log4js": "^6.9.1",
"otplib": "^13.4.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pdfkit": "^0.19.1",
"pg-promise": "^12.7.0",
"socket.io": "^4.8.3"
},
"scripts": {
"build": "run-s tsc copy-assets",
"clean": "rimraf dist ./node_modules/.cache/",
"copy-assets": "copyfiles -u 1 src/**/*.sql dist/",
"dbmigrate:create": "ts-node src/db/dbMigrator/migration/create.ts",
"format": "prettier --write \"src/**/*.+(ts|js|jsx|json|yml|yaml|css|md|vue)\"",
"jest": "jest --detectOpenHandles",
"lint:fix": "npm run lint -- --fix",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"prepare": "run-s build && husky",
"test": "run-s clean tsc:test copy-assets jest",
"test:watch": "run-s clean tsc:test copy-assets \"jest --watchAll\"",
"tsc": "tsc",
"tsc:test": "tsc --project tsconfig.test.json",
"tsc:watch": "tsc --watch"
},
"files": [
"dist/**/*"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"**/*.{js,ts,json,css,md}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openforis/arena-server.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/openforis/arena-server/issues"
},
"homepage": "https://github.com/openforis/arena-server#readme",
"packageManager": "yarn@4.16.0",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}