-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.59 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
{
"name": "Deartoday-Server",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/TeamDearToday/Deartoday-Server.git",
"author": "jeonghoon, ruhee",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"build": "tsc && node dist",
"test": "mocha -r ts-node/register src/test/*.spec.ts -exit",
"lint": "./node_modules/.bin/eslint .",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"**/*.ts": [
"eslint --fix"
]
},
"dependencies": {
"agenda": "^4.3.0",
"aws-sdk": "^2.1174.0",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"dayjs": "^1.11.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"firebase-admin": "^11.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.2",
"multer": "^1.4.2",
"multer-s3": "^2.10.0",
"ts-config": "^20.10.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.1",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.7",
"@types/multer-s3": "^2.0.0",
"@types/node": "^18.0.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"chai": "^4.3.6",
"eslint": "^8.19.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}