-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.52 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
78
79
80
81
82
83
84
85
86
{
"name": "react-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "NODE_ENV=production node serve.js",
"dev": "NODE_ENV=development webpack-dev-server",
"serve": "node serve.js",
"build": "NODE_ENV=production webpack",
"postinstall": "webpack --config ./webpack.config.js --progress"
},
"engines": {
"node": "8.9.4",
"npm": "5.6.x"
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-cache-inmemory": "^1.1.12",
"apollo-client": "^2.2.8",
"apollo-client-preset": "^1.0.8",
"apollo-link-http": "^1.5.3",
"express": "^4.16.3",
"express-history-api-fallback": "^2.2.1",
"firebase": "^4.13.1",
"graphql": "^0.13.2",
"graphql-tag": "^2.8.0",
"intersection-observer": "^0.5.0",
"luxon": "^1.2.0",
"moment": "^2.22.1",
"prop-types": "^15.6.0",
"ramda": "^0.25.0",
"react": "^16.2.0",
"react-apollo": "^2.1.1",
"react-clipboard.js": "^1.1.3",
"react-countdown-now": "^1.3.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.1.3",
"react-infinite-scroller": "^1.1.3",
"react-intersection-observer": "^3.0.3",
"react-render-html": "^0.6.0",
"react-router-dom": "^4.2.2",
"rimp": "^0.1.5",
"serve-static": "^1.13.2",
"unfetch": "^3.0.0"
},
"devDependencies": {
"autoprefixer": "^8.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.18",
"compression-webpack-plugin": "^1.1.6",
"css-hot-loader": "^1.3.7",
"css-loader": "^0.28.9",
"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",
"file-loader": "^1.1.11",
"glob": "^7.1.2",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.2.2",
"node-sass": "^4.7.2",
"postcss-loader": "^2.1.0",
"preload-webpack-plugin": "^2.2.0",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"react-test-renderer": "^16.2.0",
"sass-loader": "^6.0.6",
"script-ext-html-webpack-plugin": "^1.8.8",
"serviceworker-webpack-plugin": "^0.2.3",
"style-ext-html-webpack-plugin": "^3.4.7",
"style-loader": "^0.20.1",
"url-loader": "^1.0.1",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
}
}