-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.1 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "dist",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"reset": "rm -rf node_modules && rm -rf dist && yarn install",
"lint": "./node_modules/.bin/eslint .",
"test": "cross-env NODE_ENV=test jest --setupFiles dotenv/config --config jest.config.js --detectOpenHandles --forceExit",
"lint-staged": "lint-staged",
"start:dev": "node dist/index.js"
},
"author": "thguss <[email protected]>",
"contributors": [
"l2hyunwoo <[email protected]>"
],
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^2.7.12",
"@types/node": "^18.0.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"cross-env": "^7.0.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^28.0.5",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@sentry/node": "^7.7.0",
"@sentry/tracing": "^7.7.0",
"@types/multer": "^1.4.7",
"@types/nunjucks": "^3.2.1",
"@types/winston": "^2.4.4",
"aws-sdk": "^2.1140.0",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongoose": "^6.3.1",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"multer-s3": "^2.10.0",
"nunjucks": "^3.2.3",
"winston": "^3.8.1"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"repository": "https://github.com/Health-Food-Me/Health-Food-Me-Server.git"
}