-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npx nodemon src/app.ts",
"tslint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "vitest --watch false",
"jest-test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/sqlite3": "^3.1.8",
"cordova-sqlite-storage": "^6.0.0",
"cors": "^2.8.5",
"dayjs": "^1.11.5",
"express": "^4.18.1",
"express-jwt": "^7.7.7",
"express-oauth2-jwt-bearer": "^1.3.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^3.0.0",
"localforage": "^1.10.0",
"mysql2": "^2.3.3",
"patch-package": "^6.5.0",
"pino": "^8.6.1",
"pino-pretty": "^9.1.0",
"sql.js": "^1.8.0",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.4",
"sqljs": "^0.0.0-6",
"tslint": "^6.1.3",
"typeorm": "^0.3.11",
"vitest": "^0.25.8"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.15",
"@vitest/coverage-c8": "^0.25.8",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"@tsconfig/node14": "latest",
"@vitest/ui": "latest",
"vite": "latest"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}