-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.02 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
{
"name": "didactic-guacamole",
"version": "1.0.0",
"description": "A simple app created with Express.js",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"build": "cd react-client && npm install && npm run-script build",
"heroku-postbuild": "cd react-client && npm install && npm run-script build"
},
"engines": {
"node": "15.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jnutterdev/didactic-guacamole.git"
},
"keywords": [],
"author": "Kristin, Tara, John",
"license": "ISC",
"bugs": {
"url": "https://github.com/jnutterdev/didactic-guacamole/issues"
},
"homepage": "https://github.com/jnutterdev/didactic-guacamole#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"node-sass": "^5.0.0",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.5.0"
}
}