-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.73 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
56
{
"name": "fragments",
"private": true,
"version": "0.11.3",
"description": "Fragments back-end API",
"scripts": {
"test:watch": "jest -c jest.config.js --runInBand --watch --",
"test": "jest -c jest.config.js --runInBand --",
"coverage": "jest -c jest.config.js --runInBand --coverage",
"lint": "eslint --config eslint.config.mjs \"./src/**/*.js\" \"tests/**/*.js\"",
"start": "node src/index.js",
"dev": "cross-env LOG_LEVEL=debug nodemon ./src/index.js --watch src",
"debug": "cross-env LOG_LEVEL=debug nodemon --inspect=0.0.0.0:9229 ./src/index.js --watch src",
"test:integration": "hurl --test --glob \"tests/integration/**/*.hurl\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hpatel292-seneca/fragments.git"
},
"author": "Harshil Patel",
"license": "UNLICENSED",
"devDependencies": {
"@eslint/js": "^9.2.0",
"@orangeopensource/hurl": "^4.3.2",
"eslint": "^9.2.0",
"globals": "^15.2.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "3.2.5",
"supertest": "^7.0.0"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.620.1",
"@aws-sdk/client-s3": "^3.617.0",
"@aws-sdk/lib-dynamodb": "^3.620.1",
"aws-jwt-verify": "^4.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"csvtojson": "^2.0.10",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"http-auth": "^4.2.0",
"http-auth-passport": "^1.0.7",
"js-yaml": "^4.1.0",
"markdown-it": "^14.1.0",
"passport": "^0.7.0",
"passport-http-bearer": "^1.0.1",
"pino": "^9.0.0",
"pino-http": "^10.1.0",
"pino-pretty": "^11.0.0",
"sharp": "^0.33.4",
"stoppable": "^1.1.0"
}
}