forked from javiergamarra/bilbostack-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 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
46
47
48
49
50
{
"name": "event-feedback",
"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",
"migrate": "npm run sequelize -- db:migrate",
"sequelize": "cd src/data && sequelize",
"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",
"style:dev": "node-sass -w -r ./src/style/style.scss ./src/static/style.css",
"style:build": "node-sass ./src/style/style.scss ./src/static/style.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sirikon/event-feedback.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sirikon/event-feedback/issues"
},
"homepage": "https://github.com/Sirikon/event-feedback#README",
"dependencies": {
"body-parser": "^1.18.2",
"connect-redis": "^3.3.3",
"ejs": "^2.5.7",
"express": "^4.16.2",
"express-basic-auth": "^1.1.3",
"express-ejs-layouts": "^2.3.1",
"express-session": "^1.15.6",
"pg": "^7.4.1",
"sequelize": "^4.34.0",
"sequelize-cli": "^4.0.0"
},
"devDependencies": {
"eslint": "^5.8.0",
"mocha": "^5.2.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"nyc": "^13.1.0",
"supertest": "^3.3.0"
}
}