forked from elasticpath/react-pwa-reference-storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.64 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "my-ap",
"version": "0.2.0",
"private": true,
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.0.0",
"appcache-webpack-plugin": "^1.4.0",
"aws-sdk": "^2.287.0",
"bluebird": "3.3.3",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"classnames": "2.2.3",
"cookie-parser": "1.4.1",
"dispatchr": "^1.0.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.8.0",
"enzyme-to-json": "^3.3.5",
"eventemitter3": "^1.2.0",
"express": "^4.16.3",
"express-graphql": "0.4.9",
"express-useragent": "^0.2.4",
"fastclick": "1.0.6",
"fbjs": "0.7.2",
"flux": "^2.1.1",
"front-matter": "2.0.6",
"graphiql": "^0.5.0",
"graphql": "^0.4.18",
"handlebars": "^4.0.5",
"hoist-non-react-statics": "^1.2.0",
"html-pdf": "^2.1.0",
"isomorphic-style-loader": "^1.0.0",
"jade": "1.11.0",
"jquery": "^3.3.1",
"jsonwebtoken": "5.7.0",
"less-vars-to-js": "^1.3.0",
"lodash": "^4.17.11",
"markdown-it": "6.0.0",
"moment": "^2.13.0",
"node-fetch": "1.3.3",
"normalize.css": "3.0.3",
"popper.js": "^1.14.4",
"pretty-error": "2.0.0",
"prop-types": "^15.6.1",
"query-string": "^6.2.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-ga": "^2.5.3",
"react-intl-universal": "1.11.6",
"react-motion": "^0.4.4",
"react-onclickoutside": "^5.3.3",
"react-overlays": "^0.6.6",
"react-responsive-modal": "^3.5.1",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-prop-types": "^1.0.4",
"react-routing": "0.0.7",
"react-scripts": "^1.1.4",
"react-scroll-parallax": "^2.0.1",
"react-slick": "^0.23.2",
"react-test-renderer": "^16.7.0",
"schema-client": "^2.2.1",
"scriptjs": "^2.5.9",
"setimmediate2": "^2.0.1",
"sharethis-reactjs": "^1.3.3",
"smart-mixin": "^2.0.0",
"source-map-support": "0.4.0",
"tether": "^1.4.4",
"whatwg-fetch": "0.11.0",
"workbox-webpack-plugin": "^3.4.1"
},
"scripts": {
"start": "webpack-dev-server --config=webpack/webpack.config.dev.js --mode development --host 0.0.0.0 --inline --watch --hot",
"start-prod": "webpack-dev-server --config=webpack/webpack.config.prod.js --mode production",
"build": "webpack --config=webpack/webpack.config.prod.js --mode production",
"deploy": "webpack --config=webpack/webpack.config.prod.js --mode production && aws s3 sync webpack/dist/ s3://build-store",
"test": "react-scripts test --runInBand --env=jsdom --testPathIgnorePatterns common.js",
"eject": "react-scripts eject",
"coverage": "react-scripts test --coverage"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.0",
"compression-webpack-plugin": "^1.1.11",
"css-loader": "^0.28.11",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-header": "^1.2.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"json-loader": "^0.5.7",
"less": "3.8.1",
"less-loader": "4.1.0",
"puppeteer": "^1.12.2",
"serviceworker-webpack-plugin": "^0.2.3",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4",
"webpack-pwa-manifest": "^3.6.3"
}
}