-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 962 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
40
41
42
43
44
{
"name": "02-server-adminpro",
"version": "2.0.0",
"description": "AdminPro Server",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"lint": "standard --fix .",
"prepare": "husky install"
},
"keywords": [
"express",
"google-auth-library",
"jsonwebtoken",
"mongodb"
],
"author": "José Luis Olemar",
"license": "ISC",
"dependencies": {
"bcryptjs": "2.4.3",
"cors": "2.8.5",
"dotenv": "10.0.0",
"express": "4.17.2",
"express-fileupload": "1.2.1",
"express-validator": "6.14.0",
"google-auth-library": "7.11.0",
"jsonwebtoken": "8.5.1",
"mongoose": "6.1.3",
"uuid": "8.3.2"
},
"devDependencies": {
"husky": "7.0.4",
"nodemon": "2.0.15",
"standard": "16.0.4"
},
"eslintConfig": {
"extends": "./node_modules/standard/eslintrc.json",
"ignorePatterns": [
"node_modules/**",
"dist/**"
]
}
}