-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 897 Bytes
/
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
{
"name": "wishlist-node",
"version": "1.0.0",
"description": "Backend for a wishlist",
"author": "David T. Pizarro Frick",
"main": "src/index.js",
"scripts": {
"start": "NODE_ENV=production node src/index.js",
"dev": "NODE_ENV=development nodemon src/index.js",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,css,scss,json,md}\""
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"express-oauth2-jwt-bearer": "^1.3.0",
"helmet": "^6.0.1",
"jwks-rsa": "^3.0.1",
"mongoose": "^7.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"nodemon": "^2.0.22",
"prettier": "^3.4.2"
},
"prettier": {
"printWidth": 110,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2
}
}