-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "plantrade",
"version": "1.0.0",
"engines": {
"node": "14.x"
},
"description": "the hottest plant buy and sell website on the internet",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon app.js",
"build": "npm install && cd config && rm -f config.json && cd .. && npx sequelize-cli db:migrate",
"heroku-postbuild": "npm install && rm -f config/config.json && npx sequelize-cli db:migrate && npm install --prefix client && npm run build --prefix client",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neilitalia/plantrade.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/neilitalia/plantrade/issues"
},
"homepage": "https://github.com/neilitalia/plantrade#readme",
"dependencies": {
"aws-sdk": "^2.1005.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"eslint": "^6.7.2",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.7.1",
"sequelize": "^6.7.0",
"stripe": "^8.181.0"
},
"devDependencies": {
"faker": "^5.5.3",
"nodemon": "^2.0.13"
}
}