-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.2 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
{
"name": "slabinventory",
"version": "1.0.0",
"description": "Inventory management for a current employer to keep track of Slabs and their images and details.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client-install": "npm install --prefix client",
"server": "nodemon server.js",
"start": "node server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jlato89/SlabInventory.git"
},
"author": "Josh Latour",
"license": "ISC",
"dependencies": {
"concurrently": "^4.1.2",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"mysql2": "^1.7.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"sequelize": "^5.19.0"
},
"bugs": {
"url": "https://github.com/jlato89/SlabInventory/issues"
},
"homepage": "https://github.com/jlato89/SlabInventory#readme"
}