forked from Shopify/unite-react-node-app-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.54 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.54 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
{
"name": "shopify-koa-app",
"version": "1.0.0",
"description": "An embedded Shopify app!",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec babel-node index.js",
"start": "npm run dev"
},
"author": "themallen",
"license": "MIT",
"dependencies": {
"@shopify/koa-shopify-auth": "^2.0.6",
"@shopify/koa-shopify-graphql-proxy": "^1.0.2",
"@shopify/polaris": "^2.8.0",
"@shopify/react-html": "^1.0.0",
"@shopify/react-shopify-app-route-propagator": "^1.0.0",
"apollo-boost": "^0.1.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^1.0.0",
"dotenv": "^5.0.1",
"graphql": "^0.13.2",
"isomorphic-fetch": "^2.2.1",
"koa": "^2.5.0",
"koa-route": "^3.2.0",
"koa-session": "^5.8.1",
"koa-views": "^6.1.4",
"koa-webpack": "^3.0.2",
"npm": "^5.8.0",
"react": "^16.3.2",
"react-apollo": "^2.1.0-beta.3",
"react-dom": "^16.3.2",
"react-fetch-component": "^6.1.0",
"react-object-inspector": "^0.2.1",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"style-loader": "^0.23.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"nodemon": "^1.17.3",
"prettier": "^1.12.1"
}
}