-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.5 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
{
"name": "hacker-news-app",
"version": "1.0.0",
"description": "Hacker News App - fetch most current words in stories titles",
"main": "index.js",
"repository": "",
"scripts": {
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"clean": "rimraf dist",
"production": "cross-env npm run clean && webpack --config webpack.production.config.js --progress --profile --colors",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch"
},
"author": "Laetitia Zammit",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"jquery": "^2.2.1",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7",
"webpack": "^2.2.0",
"rimraf": "^2.5.4",
"html-webpack-plugin": "^2.28.0",
"copy-webpack-plugin": "^4.0.0",
"extract-text-webpack-plugin": "^2.0.0-beta.5",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"@blueprintjs/core": "^1.14.0",
"axios": "^0.16.0",
"babel-preset-stage-1": "^6.1.18",
"cross-env": "^4.0.0",
"lodash": "^3.10.1",
"moment": "^2.18.1",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-redux": "^4.0.0",
"react-router": "^2.0.0-rc5",
"redux": "^3.0.4",
"redux-promise": "^0.5.3"
}
}