-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.32 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": "express-ci-starter",
"version": "1.0.0",
"description": "Simple Node/Express CRUD application and scaffolding to help students quickly get started with a new project, with tests and CI support.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"lint": "eslint **/*.js --quiet",
"fix": "eslint --fix .",
"test": "npm run lint && cross-env NODE_ENV=test mocha -u tdd --reporter spec --exit"
},
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"heroku": "^7.22.7",
"http": "0.0.0",
"mysql2": "^1.6.4",
"sequelize": "^4.44.3",
"socket.io": "^2.2.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.6.2",
"mocha": "^5.2.0",
"prettier": "^1.13.7"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rogueathletic/skunk-works-chat.git"
},
"author": "",
"bugs": {
"url": "https://github.com/rogueathletic/skunk-works-chat/issues"
},
"homepage": "https://github.com/rogueathletic/skunk-works-chat#readme"
}