-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.72 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "gryph",
"version": "1.0.0",
"description": "A video sharing chat application.",
"scripts": {
"start": "node server",
"test": "npm run lint && npm run test:server && npm run test:commands",
"test:commands": "ava test/commands.js --tap | tap-spec",
"test:server": "mocha test/server.js --timeout 15000",
"lint": "eslint client/**/*.js server/**/*.js *.js",
"build": "webpack -p"
},
"repository": {
"type": "git",
"url": "https://github.com/FakeSloth/gryph.git"
},
"license": "MIT",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.0",
"chalk": "^1.1.3",
"compression": "^1.6.1",
"dem-feels": "^1.6.0",
"express": "^4.13.4",
"got": "^6.3.0",
"hbs": "^4.0.0",
"jsonwebtoken": "^5.7.0",
"lodash": "^4.9.0",
"moment": "^2.12.0",
"morgan": "^1.7.0",
"origindb": "^2.6.1",
"serve-favicon": "^2.3.0",
"socket.io": "^1.4.5",
"toid": "^1.0.1",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"winston": "^2.2.0"
},
"devDependencies": {
"ava": "^0.14.0",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"eslint": "^2.7.0",
"eslint-plugin-react": "^4.3.0",
"isomorphic-fetch": "^2.2.1",
"jwt-decode": "^2.0.1",
"mocha": "^2.4.5",
"react": "^15.0.1",
"react-bootstrap": "^0.28.5",
"react-dom": "^15.0.1",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"react-youtube": "^6.0.1",
"redux": "^3.3.1",
"socket.io-client": "^1.4.5",
"supertest": "^1.2.0",
"tap-spec": "^4.1.1"
}
}