-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 843 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 843 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
{
"name": "products",
"version": "1.0.0",
"description": "Creating backend Products API for FEC",
"main": "server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server/index.js",
"configure": "./bin/configuredb.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NutmegGang/Products.git"
},
"author": "Will Atwood",
"license": "ISC",
"bugs": {
"url": "https://github.com/NutmegGang/Products/issues"
},
"homepage": "https://github.com/NutmegGang/Products#readme",
"dependencies": {
"axios": "^0.26.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"postgres": "^3.0.6"
},
"devDependencies": {
"eslint-config-airbnb": "^19.0.4",
"nodemon": "^2.0.15"
}
}