-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
{
"name": "global-forecast",
"version": "0.0.1",
"description": "global weather forecast app built with react/redux",
"main": "index.js",
"repository": "[email protected]:zanuka/global-forecast.git",
"scripts": {
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js",
"lint": "./node_modules/.bin/eslint ./src/ --cache",
"lint:fix": "./node_modules/.bin/eslint ./src/ --cache --fix",
"lint:watch": "esw ./src --cache --watch",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch"
},
"author": "",
"license": "ISC",
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0",
"yarn": ">=1.0.0"
},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-eslint": "^8.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",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"eslint-watch": "^3.1.3",
"growl": ">=1.10.0",
"jsdom": "^8.1.0",
"mocha": "^5.2.0",
"react-addons-test-utils": "^0.14.7",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.6",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"axios": "^0.17.1",
"babel-preset-stage-1": "^6.1.18",
"hoek": ">=5.0.3",
"jquery": "^3.3.1",
"lodash": "^4.17.11",
"prop-types": "^15.6.0",
"randomatic": ">=3.0.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-redux": "4.3.0",
"react-router": "^2.0.1",
"redux": "^3.0.4",
"redux-promise": "^0.5.3"
}
}