-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 KB
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": "natours",
"version": "1.0.0",
"description": "Learning node, express and mongoDB",
"main": "app.js",
"scripts": {
"start": "nodemon server.js",
"start:prod": "cross-env NODE_ENV=production nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DalaScript/natours.git"
},
"author": "DalaScript",
"license": "ISC",
"bugs": {
"url": "https://github.com/DalaScript/natours/issues"
},
"homepage": "https://github.com/DalaScript/natours#readme",
"dependencies": {
"dotenv": "^16.5.0",
"express": "^4.16.4",
"mongoose": "^5.5.2",
"morgan": "^1.10.0",
"slugify": "^1.6.6"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react": "^7.37.5",
"prettier": "^3.5.3"
}
}