-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.9 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "hashline",
"version": "0.5.11-beta",
"description": "Realtime discussions",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"start": "webpack-dev-server -d --progress --open --colors --config ./build/dev.config.js",
"deploy": "npm run clear && webpack -p --progress --display-error-details --config ./build/prod.config.js",
"server": "nodemon ./server/index.js",
"server-prod": "node ./server/index.js",
"lint": "eslint ./src ./server",
"clear": "rimraf ./public/index.js ./public/styles.css ./public/img ./public/fonts",
"migrate:latest": "knex migrate:latest --knexfile server/src/knexfile.js",
"migrate:rollback": "knex migrate:rollback --knexfile server/src/knexfile.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gios/hashline.git"
},
"author": "Gios",
"license": "ISC",
"bugs": {
"url": "https://github.com/gios/hashline/issues"
},
"homepage": "https://github.com/gios/hashline#readme",
"dependencies": {
"bootstrap": "^4.0.0-alpha.2",
"boron": "^0.2.3",
"font-awesome": "^4.5.0",
"immutable": "^3.7.6",
"isomorphic-fetch": "^2.2.1",
"jquery": "^2.2.0",
"knex": "^0.11.1",
"koa": "^1.2.0",
"koa-bodyparser": "^2.0.1",
"koa-favicon": "^1.2.1",
"koa-helmet": "^1.0.0",
"koa-jwt": "^1.1.2",
"koa-logger": "^1.3.0",
"koa-router": "^5.4.0",
"koa-send": "^3.1.1",
"koa-static": "^2.0.0",
"moment": "^2.11.2",
"pg": "^4.5.5",
"react": "^15.0.2",
"react-addons-css-transition-group": "^15.0.2",
"react-contenteditable": "^1.1.0",
"react-custom-scrollbars": "^4.0.0-beta.2",
"react-dnd": "^2.1.4",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.0.2",
"react-emoji": "^0.4.4",
"react-emoji-picker": "^1.0.12",
"react-notifications": "^1.2.0",
"react-popover": "^0.4.4",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-router-redux": "^4.0.0",
"react-select": "^1.0.0-rc.1",
"redux": "^3.5.2",
"redux-api-middleware": "^1.0.2",
"redux-thunk": "^2.1.0",
"socket.io": "^1.4.6",
"socket.io-client": "^1.4.6",
"tether": "^1.3.2",
"tracer": "^0.8.3"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.9.0",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"image-webpack-loader": "^1.6.3",
"node-sass": "^3.4.2",
"nodemon": "^1.8.1",
"resolve-url-loader": "^1.4.3",
"rimraf": "^2.5.2",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}