-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.8 KB
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": "CloudKicker",
"jest": {
"setupFiles": [
"<rootDir>/__mocks__/LocalStorageMock.js"
]
},
"version": "1.0.0",
"description": "Weather Forecast Application in React",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --inline --hot",
"build": "./node_modules/webpack/bin/webpack.js",
"test": "mocha --require test/helpers/setup.js",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"repository": {
"type": "git",
"url": "https://github.com/Adamj1232/CloudKicker-WeatherForecast-ReactProject"
},
"author": "Adam Carpenter & Dave Hubertus",
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "https://github.com/Adamj1232/CloudKicker-WeatherForecast-ReactProject",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.7.4",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.7.1",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"gh-pages": "^0.12.0",
"jsdom": "^9.11.0",
"locus": "^2.0.1",
"mocha": "^2.4.5",
"mocha-loader": "^0.7.1",
"node-libs-browser": "^1.0.0",
"node-sass": "^3.4.2",
"react": "^15.1.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.1.0",
"sass-loader": "^3.2.0",
"sinon": "^1.17.7",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.3"
},
"dependencies": {
"jquery": "^3.1.1",
"jquery-ui": "^1.12.1",
"jquery-ui-dist": "^1.12.1"
}
}