This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
forked from jonasschmedtmann/complete-node-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.46 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
47
{
"name": "natours",
"version": "1.0.0",
"description": "Learning node, express, and Mongo",
"main": "app.js",
"scripts": {
"start": "npm run start:dev",
"start:dev": "npx nodemon server.js",
"start:prod": "NODE_ENV=production npx nodemon server.js",
"db:dev": "node './dev-data/data/import-dev-data.js'",
"db:dev:import": "node './dev-data/data/import-dev-data.js' --import './dev-data/data/tours-simple.json'",
"db:dev:delete": "node './dev-data/data/import-dev-data.js' --delete",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrictham/complete-node-bootcamp.git"
},
"author": "Andric Tham",
"license": "ISC",
"bugs": {
"url": "https://github.com/andrictham/complete-node-bootcamp/issues"
},
"homepage": "https://github.com/andrictham/complete-node-bootcamp#readme",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^5.13.15",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.3"
},
"engines": {
"node": ">=10.0.0"
}
}