-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.78 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
57
58
59
{
"name": "fragments",
"private": true,
"version": "0.13.4",
"description": "Fragments back-end API",
"main": "src/index.js",
"scripts": {
"test:integration": "hurl --test --glob \"tests/integration/**/*.hurl\"",
"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 .eslintrc.js src/** tests/unit/**",
"start": "node src/index.js",
"dev": "LOG_LEVEL=debug nodemon ./src/index.js --watch src ",
"debug": "LOG_LEVEL=debug nodemon --inspect=0.0.0.0:9229 ./src/index.js --watch src"
},
"repository": {
"type": "git",
"url": "https://github.com/fragments/fragments.git"
},
"keywords": [],
"author": "Batuhan Ipci",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/batunpc/fragments/issues"
},
"githubUrl": "https://github.com/batunpc/fragments#readme",
"devDependencies": {
"@orangeopensource/hurl": "^1.8.0",
"eslint": "^8.23.0",
"jest": "^29.0.3",
"nodemon": "^2.0.19",
"prettier": "2.7.1",
"supertest": "^6.2.4"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.222.0",
"@aws-sdk/client-s3": "^3.216.0",
"@aws-sdk/lib-dynamodb": "^3.222.0",
"aws-jwt-verify": "^2.1.3",
"compression": "^1.7.4",
"content-type": "^1.0.4",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"helmet": "^6.0.0",
"http-auth": "^4.2.0",
"http-auth-passport": "^1.0.7",
"markdown-it": "^13.0.1",
"passport": "^0.6.0",
"passport-http-bearer": "^1.0.1",
"pino": "^8.5.0",
"pino-colada": "^2.2.2",
"pino-http": "^8.2.0",
"pino-pretty": "^9.1.0",
"sharp": "^0.30.7",
"stoppable": "^1.1.0"
}
}