-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
60
61
62
63
{
"name": "storefile-api",
"version": "1.0.0",
"description": "Store files of user",
"main": "index.js",
"scripts": {
"test": "mocha --recursive '**/*.spec.js'",
"local": "rm -rf dist && npx tsc && nodemon --watch './**/*.ts' --exec 'ts-node' src/app.ts",
"build": "rm -rf dist && npx tsc",
"lint": "npx eslint . --ext .ts",
"lintFix": "eslint --fix",
"prepare": "husky install .husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/himharsh1997/storefile-api.git"
},
"keywords": [
"NodeJS",
"ExpressJS",
"Storage"
],
"author": "Himanshu Joshi",
"license": "ISC",
"bugs": {
"url": "https://github.com/himharsh1997/storefile-api/issues"
},
"homepage": "https://github.com/himharsh1997/storefile-api#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.529.0",
"@types/auth0": "^2.34.19",
"@types/dotenv": "^8.2.0",
"@types/mongoose": "^5.11.97",
"auth0": "^4.0.0",
"axios": "^1.7.4",
"dotenv": "^16.0.0",
"express": "^4.19.2",
"express-oauth2-jwt-bearer": "^1.1.0",
"mocha": "^10.7.3",
"mongoose": "^6.12.0",
"node-fetch": "^3.2.10",
"request": "^2.88.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.7",
"@types/node": "^17.0.45",
"@types/node-fetch": "^2.6.1",
"@types/request": "^2.48.8",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.9.5"
}
}