-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 1.99 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
76
77
78
79
80
81
82
{
"name": "skillvine-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch --runInBand",
"lint:watch": "eslint-watch src/**/*.ts",
"start": "node dist/api/index.js",
"build": "npm i && npx tsc && mkdir -p dist/api/uploads",
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/api/index.ts",
"seed": "ts-node -r tsconfig-paths/register src/data/seed.ts"
},
"keywords": [
"express",
"typescript",
"nodejs",
"mongodb",
"mongoose",
"aws",
"s3",
"google",
"oauth",
"jwt",
"bcrypt",
"multer",
"cookie-parser",
"cors",
"morgan",
"joi",
"http-status-codes",
"uuid"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.350.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"google-auth-library": "^8.7.0",
"helmet": "^7.0.0",
"http-status-codes": "^2.2.0",
"joi": "^17.9.1",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.3",
"mongoose": "^7.0.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"uuid": "^9.0.0"
},
"_moduleAliases": {
"@": "dist"
}
}