-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.33 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": "intern-pocket-imdb-express-boilerplate",
"version": "1.0.0",
"description": "NodeJS Express boilerplate for IMDB app",
"main": "server.js",
"repository": "[email protected]:vivifyideas/-intern-pocket-imdb-express-boilerplate.git",
"author": "Aleksandar Babic <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon --exec babel-node --legacy-watch --inspect=0.0.0.0 src/server.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "8.3.0",
"eslint-config-airbnb": "19.0.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.0"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^6.0.14",
"morgan": "^1.10.0"
}
}