-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.45 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
{
"name": "project2-wolves",
"version": "1.0.0",
"description": "Project 2: Team Wolves; Recipe Web Site",
"main": "server.js",
"scripts": {
"start": "node server.js",
"lint": "./node_modules/.bin/eslint *.js config models routes public/js --quiet",
"fix": "./node_modules/.bin/eslint --fix .",
"test": "npm run lint && node ./node_modules/cross-env/dist/bin/cross-env-shell.js NODE_ENV=test node ./node_modules/mocha/bin/mocha --recursive -u tdd --reporter spec --exit",
"test-only": "node ./node_modules/cross-env/dist/bin/cross-env-shell.js NODE_ENV=test node ./node_modules/mocha/bin/mocha --recursive -u tdd --reporter spec --exit"
},
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"multiparty": "^4.2.1",
"mysql2": "^1.6.4",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"request": "^2.88.0",
"sequelize": "^4.41.2"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cross-env": "^5.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"prettier": "^1.13.7"
}
}