-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
{
"name": "chat-up",
"version": "1.0.0",
"private": true,
"scripts": {
"init:dev": "npm install && npm run db:fresh && npm run start",
"init:test": "npm install && npm run db:fresh && npm run test",
"init:prod": "npm install --production && npm run db:migrate",
"db:clean": "./node_modules/.bin/sequelize db:migrate:undo:all",
"db:migrate": "./node_modules/.bin/sequelize db:migrate",
"db:seed": "./node_modules/.bin/sequelize db:seed:all",
"db:fresh": "npm run db:clean && npm run db:migrate && npm run db:seed",
"test": "mocha --exit",
"start": "node ./bin/www"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"express-validator": "^5.3.0",
"http-errors": "~1.6.2",
"jsonwebtoken": "^8.3.0",
"morgan": "~1.9.0",
"mysql2": "^1.6.1",
"sequelize": "^4.41.0",
"sequelize-cli": "^5.2.0"
},
"description": "Simple free-for-all chat application created using NodeJS",
"main": "app.js",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"faker": "^4.1.0",
"mocha": "^5.2.0"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/neomrc/chat-up.git"
},
"author": "Marc Pioquinto",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/neomrc/chat-up/issues"
},
"homepage": "/~https://github.com/neomrc/chat-up#readme"
}