-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.8 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
{
"name": "tidings",
"version": "0.0.1",
"description": "A NLP based news app powered by API.ai",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --watch",
"test": "jest",
"build": "webpack --config ./webpack.production.config.js --progress --profile --colors"
},
"presets": {
"presets": [
"es2015",
"react"
]
},
"author": "Nitin Tulswani <tulswani19@gmail.com>",
"license": "ISC",
"dependencies": {
"apiai": "^3.0.3",
"bulma": "^0.3.1",
"halogen": "^0.2.0",
"moment-timezone": "^0.5.11",
"react": "^15.4.2",
"react-delay-render": "0.0.42",
"react-dom": "^15.4.2",
"react-progressive-image": "^0.1.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"styled-components": "^1.4.2",
"superagent": "^3.4.0"
},
"devDependencies": {
"autoprefixer": "^6.7.0",
"babel": "^6.5.2",
"babel-core": "^6.13.2",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"chai": "^3.5.0",
"compression-webpack-plugin": "^0.3.2",
"css-loader": "^0.23.1",
"enzyme": "^2.7.1",
"express": "^4.14.1",
"extract-text-webpack-plugin": "^2.0.0-rc.2",
"html-webpack-plugin": "^2.26.0",
"jest": "^18.1.0",
"json-loader": "^0.5.4",
"mocha": "^3.2.0",
"node-sass": "^4.4.0",
"postcss-loader": "^0.9.1",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"redux-mock-store": "^1.2.2",
"sass-loader": "^4.1.1",
"sinon": "^1.17.7",
"style-loader": "^0.13.1",
"webpack": "^2.1.0-beta.25",
"webpack-dev-server": "^2.1.0-beta.0"
}
}