-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "fetch-postgres",
"version": "1.0.0",
"description": "Simple application takes data, processes and saves to remote postgreSQL database.",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js \"npm start\"",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CatLibWilk/Fetch-postgres.git"
},
"author": "Andrew Wilk",
"license": "ISC",
"bugs": {
"url": "https://github.com/CatLibWilk/Fetch-postgres/issues"
},
"homepage": "https://github.com/CatLibWilk/Fetch-postgres#readme",
"dependencies": {
"axios": "^0.18.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"pg": "^7.10.0",
"pg-hstore": "^2.3.2",
"prompts": "^2.0.3",
"react": "^16.8.6",
"sequelize": "^4.42.1",
"sequelize-cli": "^5.4.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.18.10"
}
}