-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.47 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
{
"name": "songbird",
"version": "1.0.0",
"description": "A small interactive React app",
"main": "index.js",
"scripts": {
"start": "",
"dev": "npx nodemon index.js",
"dev-migrations": "npm run init-db-sequelize && sequelize db:migrate && sequelize db:seed:all && npx nodemon index.js",
"dev-models": "npm run init-db-sql && npx nodemon index.js",
"init-db-sequelize": "sequelize db:drop dev_songbird && sequelize db:create dev_songbird",
"init-db-sql": "cd /usr/local/var/postgres/base && echo 'DROP DATABASE IF EXISTS dev_songbird; CREATE DATABASE dev_songbird' | psql -d postgres && cd -",
"lint": "eslint './*.js'",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BewitchedBySycorax/songbird.git"
},
"keywords": [],
"author": "Aleksei Voitovskii <al.voitovskii@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/BewitchedBySycorax/songbird/issues"
},
"homepage": "https://github.com/BewitchedBySycorax/songbird#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cli-color": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pg": "^8.4.2",
"pg-hstore": "^2.3.3",
"pm2": "^4.5.0",
"sequelize": "^6.3.4",
"uuid": "^8.3.1"
},
"devDependencies": {
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"sequelize-cli": "^6.2.0"
}
}