-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.22 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
67
68
69
70
71
72
73
74
75
76
{
"name": "callout-web",
"version": "0.0.1",
"private": true,
"scripts": {
"build:dev": "webpack",
"build:prod": "webpack -p --env production",
"lint": "./node_modules/.bin/eslint src",
"test": "jest --config=jest.config.json",
"start": "webpack-dev-server",
"heroku-postbuild": "yarn run build:prod"
},
"dependencies": {
"@material-ui/core": "^1.2.3",
"@material-ui/icons": "^1.1.0",
"apollo-cache-inmemory": "^1.1.7",
"apollo-client": "^2.2.3",
"apollo-link": "^1.1.0",
"apollo-link-error": "^1.0.5",
"apollo-link-http": "^1.3.3",
"classnames": "^2.2.6",
"graphql": "^0.13.0",
"graphql-tag": "^2.7.3",
"lodash": "^4.17.10",
"moment": "^2.21.0",
"numeral": "2.0.6",
"prop-types": "^15.6.0",
"react": "^16.4.1",
"react-addons-shallow-compare": "15.6.0",
"react-apollo": "^2.0.4",
"react-dom": "^16.4.1",
"react-modal": "2.2.2",
"react-redux": "5.0.5",
"react-router-dom": "4.1.2",
"react-select": "^1.2.1",
"recompose": "^0.26.0",
"redux": "3.7.2",
"redux-persist": "^5.8.0",
"redux-thunk": "^2.2.0",
"uuid": "3.1.0",
"validator": "8.0.0"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "^8.2.2",
"babel-loader": "7.1.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-env": "1.5.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "5.0.5",
"css-loader": "0.28.4",
"dotenv": "4.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "1.5.1",
"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",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.1.0",
"jest": "20.0.4",
"node-sass": "4.5.3",
"react-test-renderer": "15.6.1",
"sass-loader": "6.0.6",
"style-loader": "0.18.2",
"webpack": "3.1.0",
"webpack-dev-server": "2.5.1"
}
}