-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.87 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
{
"name": "type-express-starter",
"author": {
"name": "ryan-ahn",
"email": "[email protected]",
"url": "https://github.com/ryan-ahn"
},
"homepage": "https://github.com/ryan-ahn",
"repository": {
"type": "git",
"url": "https://github.com/ryan-ahn/npm-express-starter.git"
},
"license": "MIT",
"description": "Start a Node Express TypeScript project in few second!",
"keywords": [
"node",
"express",
"rds",
"mongodb",
"typescript",
"ts-node",
"eslint",
"boilerplate"
],
"version": "1.0.7",
"private": false,
"bin": "./bin/npm.mjs",
"main": "app.ts",
"engines": {
"node": "18.18.2"
},
"scripts": {
"dev": "NODE_ENV=development nodemon --exec \"ts-node\" ./app.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p .",
"start": "NODE_ENV=production node ./dist/app.js",
"deploy": "tsc -p . && eb deploy"
},
"dependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/passport": "^1.0.12",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"axios": "^1.3.5",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"mongodb": "^5.2.0",
"mongoose": "^7.0.3",
"multer": "^1.4.5-lts.1",
"multer-s3": "^2.10.0",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/node": "^20.11.24",
"mysql2": "^3.9.2"
}
}