-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
39 lines (39 loc) · 1013 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
37
38
39
{
"name": "buddies-tube",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"db": "mongod",
"serve": "nodemon -r esm -r ./node_modules/module-alias/register src/init",
"start": "concurrently \"yarn db\" \"yarn serve\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^6.3.0",
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"nodemon": "^2.0.12"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^10.0.0",
"esm": "^3.2.25",
"express": "^4.17.3",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"mongoose": "^5.13.15",
"validator": "^13.7.0"
},
"_moduleAliases": {
"@routers": "./src/routers",
"@controllers": "./src/controllers",
"@models": "./src/models",
"@utils": "./src/utils"
}
}