-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "user-backend-v2",
"version": "1.0.0",
"main": "src/index.ts",
"repository": "[email protected]:fc5y/user-backend-v2.git",
"author": "Kien Nguyen <[email protected]>",
"contributors": [],
"license": "MIT",
"scripts": {
"build": "tsc",
"serve": "node dist/index.js",
"dev": "node-dev src/index.ts",
"lint-check": "prettier --config .prettierrc.json \"src/**/*.ts\" --check",
"lint-fix": "prettier --config .prettierrc.json \"src/**/*.ts\" --write"
},
"precommit": {
"run": [
"lint-check"
]
},
"dependencies": {
"ajv": "^8.6.0",
"aws-sdk": "^2.999.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"jsonwebtoken": "^8.5.1",
"lru-cache": "^6.0.0",
"multer": "^1.4.3",
"node-fetch": "^2.6.1",
"sharp": "^0.29.1",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.4",
"@types/jsonwebtoken": "^8.5.5",
"@types/lru-cache": "^5.1.1",
"@types/multer": "^1.4.7",
"@types/node-fetch": "^2.5.10",
"@types/sharp": "^0.29.2",
"@types/uuid": "^8.3.1",
"node-dev": "^7.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}