-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.02 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
73
74
75
76
77
{
"name": "coffee-challenge",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:xmile1/coffee-challenge.git",
"author": "Uyiosa Enabulele <hiskonxeptz@gmail.com>",
"license": "MIT",
"scripts": {
"build": "webpack -p",
"build-dev": "webpack -w",
"start": "webpack-dev-server",
"test": "env NODE_PATH=src ava",
"test:watch": "npm test -- --watch"
},
"dependencies": {
"axios": "^0.17.1",
"rc-slider": "^8.4.0",
"react": "^16.1.0",
"react-dom": "^16.1.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-localstorage": "^0.4.1",
"redux-logger": "^3.0.6",
"redux-persist": "^4.10.2",
"redux-thunk": "^2.2.0",
"rewire": "^3.0.0",
"styled-components": "^2.2.3"
},
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread"
]
},
"devDependencies": {
"ava": "^0.23.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"browser-env": "^3.2.2",
"css-loader": "^0.28.7",
"enzyme": "^3.1.1",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-adapter-react-16": "^1.0.4",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"ignore-styles": "^5.0.1",
"sinon": "^4.1.2",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register",
"ignore-styles",
"./src/setupTest"
]
}
}