forked from sirikon/venue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
47
48
49
{
"name": "frontfest-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html mocha --exit",
"test:docker": "cd docker/testing && ./run.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"sequelize": "cd src/data && sequelize",
"migrate": "cd src/data && sequelize db:migrate",
"start": "node index.js",
"dev": "nodemon",
"devenv:up": "cd docker/eventtoolbox-devenv && docker-compose up -d",
"devenv:down": "cd docker/eventtoolbox-devenv && docker-compose down",
"prod:up": "docker-compose up -d --build && docker exec $(docker-compose ps -q app) yarn migrate",
"prod:down": "docker-compose down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontfest/frontfest-app.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/frontfest/frontfest-app/issues"
},
"homepage": "https://github.com/frontfest/frontfest-app#README",
"dependencies": {
"body-parser": "^1.19.0",
"connect-redis": "^3.4.2",
"ejs": "^2.7.4",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-ejs-layouts": "^2.5.0",
"express-session": "^1.17.0",
"pg": "^7.15.1",
"sequelize": "^5.21.3",
"sequelize-cli": "^5.5.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"mocha": "^6.2.2",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"supertest": "^4.0.2"
}
}