-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.99 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
{
"name": "react-flux-chat",
"version": "1.0.0",
"description": "React-Flux-Chat example inspired by whatsapp web",
"main": "index.js",
"scripts": {
"start": "npm run build",
"build": "webpack -d && webpack-dev-server --hot --inline --progress --colors --watch --display-error-details --display-cached --content-base dist/ ",
"test": "mocha test/.setup.js ./test/ --recursive --reporter progress"
},
"repository": {
"type": "git",
"url": "https://github.com/tushararora/react-flux-chat"
},
"keywords": [
"reactjs",
"flux",
"chat",
"webpack",
"mocha",
"chai",
"sinon",
"babel"
],
"author": "Tushar Arora",
"license": "MIT",
"dependencies": {
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"dexie": "^1.4.2",
"dirty-chai": "^1.2.2",
"enzyme": "^2.4.1",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-import": "^2.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"fbemitter": "^2.1.1",
"flux": "^3.0.0",
"font-awesome": "^4.6.3",
"html-webpack-plugin": "^2.22.0",
"keymirror": "^0.1.1",
"object-assign": "^4.1.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-timeago": "^3.1.3",
"sinon": "^1.17.6",
"webpack": "^1.13.2"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.16.0",
"babel-register": "^6.16.3",
"css-loader": "^0.25.0",
"eslint": "^3.7.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"jsdom": "^9.5.0",
"mocha": "^3.1.0",
"react-addons-test-utils": "^15.3.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack-dev-server": "^1.16.1"
}
}