-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "minor-rtw",
"version": "1.0.0",
"description": "This is a Repo for the course Real Time Web.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src",
"start": "node app.js",
"start:dev": "nodemon -e js,jsx,css app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IanCStewart/minor-rtw.git"
},
"keywords": [
"minor",
"web-dev",
"real",
"time",
"web"
],
"author": "Ian Stewart",
"license": "MIT",
"bugs": {
"url": "https://github.com/IanCStewart/minor-rtw/issues"
},
"homepage": "https://github.com/IanCStewart/minor-rtw#readme",
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"body-parser": "^1.17.2",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"debug-http": "^1.1.0",
"dotenv": "^4.0.0",
"ejs": "^2.5.6",
"express": "^4.15.2",
"lodash": "^4.17.4",
"node-fetch": "^1.6.3",
"node-json-db": "^0.7.3",
"socket.io": "^2.0.1"
}
}