-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.49 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
48
49
{
"name": "build-a-rest-api-with-express",
"version": "1.0.0",
"description": "Treehouse course on building a REST API",
"main": "app.js",
"private": true,
"scripts": {
"importEXT": "if [ -f vscode-extensions.txt ]; then cat vscode-extensions.txt | xargs -n 1 code --install-extension; fi",
"exportEXT": "code --list-extensions > vscode-extensions.txt",
"dev": "NODE_ENV=development nodemon app.js",
"prod": "NODE_ENV=production nodemon app.js",
"sandbox": "node mongoose_sandbox.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/programmingmonkeys/build-a-rest-api-with-express.git"
},
"keywords": [
"treehouse-courese",
"express",
"api"
],
"author": "codingChewie",
"bugs": {
"url": "https://github.com/programmingmonkeys/build-a-rest-api-with-express/issues"
},
"homepage": "https://github.com/programmingmonkeys/build-a-rest-api-with-express#readme",
"devDependencies": {
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"nodemon": "^1.19.2",
"prettier": "^1.18.2"
},
"dependencies": {
"express": "^4.17.1",
"mongoose": "^5.7.8",
"morgan": "^1.9.1"
},
"engines": {
"node": "^10"
}
}