-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·76 lines (76 loc) · 2.45 KB
/
package.json
File metadata and controls
executable file
·76 lines (76 loc) · 2.45 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
{
"scripts": {
"start:prod": "NODE_ENV=production ts-node srcs/index.ts",
"start:staging": "NODE_ENV=staging ts-node srcs/index.ts",
"start:dev": "NODE_ENV=development ts-node ./srcs/index.ts",
"start": "ts-node ./srcs/index.ts",
"migrate:update": "ts-node scripts/migrate",
"migrate:test": "NODE_ENV=test ts-node scripts/migrate",
"migrate:prod": "NODE_ENV=production ts-node scripts/migrate",
"migrate:staging": "NODE_ENV=staging ts-node scripts/migrate",
"migrateImage": "NODE_ENV=production ts-node scripts/migrate-image-to-S3-from-persistance.ts",
"format": "yarn prettier --write .",
"reset:test": "DATABASE_URL=postgresql://postgres:psql@postgres:5432/lichen_test?schema=public yarn prisma migrate reset --force",
"test": "NODE_ENV=test jest --runInBand ",
"coverage": "NODE_ENV=test jest --runInBand --coverage",
"test:all": "yarn test tests/*.test.js",
"build": "tsc"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.304.0",
"@aws-sdk/s3-request-presigner": "^3.304.0",
"@prisma/client": "^3.11.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"config": "^3.3.8",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"exec-sh": "^0.4.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-swagger-generator": "^1.1.17",
"ipx": "^0.9.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mjml": "^4.10.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^3.0.1",
"node-mailjet": "^5.1.1",
"pino-http": "^5.8.0",
"sharp": "^0.32.0",
"ts-jest": "^27.0.3",
"tslint": "^6.1.3",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5",
"winston-gelf": "^1.7.0",
"zod": "^3.22.2"
},
"name": "api_lichen",
"version": "3.0.52",
"main": "index.js",
"devDependencies": {
"@types/express": "^4.16.1",
"@types/jest": "^27.5.2",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"cross-env": "^7.0.3",
"eslint": "^8.27.0",
"eslint-plugin-jest": "^27.1.5",
"jest": "^27.0.4",
"jest-html-reporters": "^2.1.6",
"jest-mock-extended": "^1.0.16",
"prettier": "2.3.0",
"prisma": "^3.11.1",
"supertest": "^6.1.3",
"ts-node": "^10.7.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.4"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}