-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.15 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.15 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
{
"name": "myra-api",
"version": "1.0.0",
"description": "MyRA API",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"axios": "^1.4.0",
"compression": "^1.7.2",
"cors": "^2.8.1",
"cross-env": "^10.1.0",
"csv": "^6.5.1",
"dayjs": "^1.11.20",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"jwks-rsa": "^4.0.1",
"kysely": "^0.29.0",
"minio": "^8.0.7",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-mock-strategy": "^2.0.0",
"pg": "^8.0.3",
"pino": "^10.3.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/compression": "^1.8.1",
"@types/node": "^25.6.2",
"@types/pg": "^8.20.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"husky": "^9.0.11",
"lint-staged": "^17.0.4",
"prettier": "^3.2.5",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.2",
"vitest": "^4.1.5"
},
"scripts": {
"start": "node build/src/server.js",
"dev": "tsx watch src/server.ts",
"build": "rm -rf build && tsc",
"build:doc": "./node_modules/.bin/apidoc -i src/ -o doc/api",
"test": "cross-env NODE_ENV=unit_test vitest run --coverage",
"test:watch": "cross-env NODE_ENV=unit_test vitest",
"test:lint": "eslint src __tests__ __testHelpers__ __mocks__ scripts",
"import": "node build/scripts/import.js",
"plan_extension_exemption": "node build/scripts/plan_extension_exemption.js",
"process_no_use": "node build/scripts/process_no_use.js",
"initialize_docker": "npm run build && tsx scripts/import.ts true",
"initialize": "npm run build && tsx scripts/import.ts true"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:bcgov/secure-image-api.git"
},
"author": "Jason C. Leach <jason.leach@fullboar.ca>",
"license": "Apache-2.0",
"homepage": "https://github.com:bcgov/range-api#readme",
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
}
}