-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
44 lines (44 loc) · 1011 Bytes
/
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
{
"name": "weblobby",
"version": "0.0.0",
"license": "GPL-2.0+",
"repository": {
"type": "git",
"url": "https://github.com/springweblobby/swl-website.git"
},
"private": true,
"scripts": {
"build": "webpack --progress --colors",
"watch": "webpack-dev-server --hot --inline --progress --colors"
},
"main": "weblobby.jsx",
"dependencies": {
"react": "0.14.x",
"react-dom": "0.14.x",
"react-addons-linked-state-mixin": "0.14.x",
"reflux": "0.2.5",
"lodash": "3.x",
"async": "1.x",
"classnames": "2.x",
"superagent": "1.x",
"filesize": "3.x",
"md5": "2.x"
},
"devDependencies": {
"css-loader": "^0.18.0",
"extract-text-webpack-plugin": "0.x",
"file-loader": "0.x",
"jsx-loader": "0.x",
"node-sass": "3.x",
"sass-loader": "3.x",
"url-loader": "0.x",
"webpack": "1.x",
"webpack-dev-server": "1.x",
"webpack-notifier": "^1.2.1"
},
"browserify": {
"transform": [
"reactify"
]
}
}