-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "backend-recipe-planner",
"version": "0.0.1",
"description": "Node + Express backend for the RecipePlanner project",
"main": "src/rootIndex.ts",
"author": "Thanh Nguyen Jr",
"license": "MIT",
"scripts": {
"start": "ts-node -r dotenv/config src/rootIndex.ts",
"clean": "rimraf dist/*",
"lint": "eslint '*/**/*.{ts,tsx}' --quiet --fix",
"tsc": "tsc",
"build": "tsc",
"dev": "nodemon --watch src -e ts,ejs --exec yarn run dev:start",
"script": "cd src/scripts && ts-node",
"prod": "yarn build; node -r dotenv/config dist/rootIndex.js"
},
"engines": {
"node": ">=12",
"npm": ">=6",
"yarn": ">=1.22"
},
"repository": "git+https://github.com/tcnguyen483/backend_recipe_planner.git",
"dependencies": {
"@types/cors": "^2.8.10",
"@types/express-jwt": "^6.0.1",
"@types/mongoose": "^5.10.4",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.37",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-jwt-authz": "^2.4.1",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.0.2",
"mongoose": "^5.12.3",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
}
}