-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.31 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.31 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
{
"name": "field-seating-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"prisma": {
"seed": "node prisma/seed.js"
},
"scripts": {
"start": "node src/app.js",
"dev": "APP_ENV=development nodemon src/app.js",
"test": "jest -i --passWithNoTests --forceExit ",
"test:watch": "jest -i --passWithNoTests --watchAll --detectOpenHandles",
"container:test": "docker-compose -f ./docker-compose.test.yml run --rm server sh -c 'sh scripts/wait-for field-seating-test-db:3306 -- sh scripts/container-test.sh' && npm run container:down",
"container:test:watch": "docker-compose -f ./docker-compose.test.yml run --rm server sh -c 'sh scripts/wait-for field-seating-test-db:3306 -- sh scripts/container-test-watch.sh' && npm run container:down",
"container:down": "docker-compose -f ./docker-compose.test.yml down",
"lint": "npx eslint .",
"db:deploy": "npx prisma generate && npx prisma migrate deploy",
"db:migration:generate": "npx prisma migrate dev",
"db:seed": "npx prisma db seed",
"spacesCsv-generate": "node data/utils/space-generator.js"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.72.0",
"@prisma/client": "^3.11.1",
"@sendgrid/mail": "^7.7.0",
"@supercharge/promise-pool": "^2.3.0",
"app-root-path": "^3.0.0",
"aws-sdk": "^2.1126.0",
"bcryptjs": "^2.4.3",
"csv": "^6.1.0",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-handlebars": "^6.0.4",
"handlebars": "^4.7.7",
"http-status": "^1.5.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"mysql2": "^2.3.3",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"ramda": "^0.28.0",
"redis": "^4.0.6",
"sharp": "^0.30.7",
"sib-api-v3-sdk": "^8.3.0",
"winston": "^3.6.0",
"winston-daily-rotate-file": "^4.6.1",
"yup": "^0.32.11"
},
"devDependencies": {
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"nodemon": "^2.0.20",
"prettier": "^2.6.1",
"prisma": "^3.11.1"
}
}