forked from bloominstituteoftechnology/node-api4-project
-
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) · 929 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 929 Bytes
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": "api4-project",
"version": "1.0.0",
"description": "In this challenge, you will build a simple Express app and deploy it to Heroku.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krueng/node-api4-project.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/krueng/node-api4-project/issues"
},
"homepage": "https://github.com/krueng/node-api4-project#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-xo": "^0.39.0",
"eslint-plugin-react": "^7.26.1",
"nodemon": "^2.0.14"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"nanoid": "^3.1.30"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}