forked from dhenry123/utdon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.88 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
{
"name": "mytinydc-utdon",
"version": "1.5.0",
"description": "Application for tracking obsolete FOSS applications - Server",
"main": "main.ts",
"scripts": {
"startServer": "USER_ENCRYPT_SECRET='7252c26afd532e75510e8d7bcf37bb56' DATABASE_ENCRYPT_SECRET=test environment=development nodemon -w src/ -e ts -L ./src/main.ts",
"startServerProduction": "USER_ENCRYPT_SECRET='7252c26afd532e75510e8d7bcf37bb56' DATABASE_ENCRYPT_SECRET=test nodemon -w src/ -e ts -L ./src/main.ts",
"build": "environment=production tsc",
"preview": "node dist/main.js",
"lint": "npx eslint ./src",
"updateVersionMajor": "./updateVersion.sh major",
"updateVersionMinor": "./updateVersion.sh minor",
"updateVersionPatch": "./updateVersion.sh patch",
"test": "jest --testPathIgnorePatterns='devtest*'"
},
"repository": {
"type": "git",
"url": "https://github.com/dhenry123/utdon.git"
},
"author": "DHENRY for mytinydc.com",
"license": "AGPL-3.0",
"dependencies": {
"@metrichor/jmespath": "^0.3.1",
"body-parser": "^1.20.2",
"express": "^4.19.2",
"express-session": "^1.18.0",
"helmet": "^7.1.0",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1",
"winston": "^3.13.0",
"yaml": "^2.4.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.6",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.4",
"winston-transport": "^4.7.0"
}
}