-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.42 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
51
{
"name": "woofshare",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"migrate": "node_modules/.bin/sequelize db:migrate",
"test": "npm run lint && cross-env NODE_ENV=test mocha -u tdd --reporter spec --exit",
"start": "node server.js",
"watch": "nodemon server.js",
"seed": "sequelize db:seed:all",
"compile:sass": "node-sass public/styles/sass/main.scss public/styles/css/style.css -w",
"lint": "eslint **/*.js --quiet",
"fix": "eslint --fix ."
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"cookies": "^0.7.3",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"express-jwt": "^5.3.1",
"express-session": "^1.15.6",
"handlebars-helpers": "^0.10.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"multer": "^1.4.1",
"mysql": "^2.16.0",
"mysql2": "^1.6.5",
"node-sass": "^4.11.0",
"nodemon": "^1.18.10",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"sequelize": "^5.2.12",
"sequelize-cli": "^5.4.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.7.0",
"mocha": "^5.2.0",
"prettier": "^1.13.7"
}
}