-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.95 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
{
"name": "shopify-node-app",
"version": "1.0.0",
"description": "Shopify's node app for CLI tool",
"scripts": {
"test": "jest",
"dev": "NODE_ENV=development nodemon ./server/index.js --watch ./server/index.js",
"build": "next build",
"start": "NODE_ENV=production node ./server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/shopify-node-app.git"
},
"author": "Shopify Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/shopify/shopify-node-app/issues"
},
"dependencies": {
"@babel/core": "7.9.0",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.1",
"@shopify/app-bridge-react": "^1.22.0",
"@shopify/app-cli-node-generator-helper": "^1.1.2",
"@shopify/koa-shopify-auth": "^3.1.63",
"@shopify/koa-shopify-graphql-proxy": "^3.2.5",
"@shopify/koa-shopify-webhooks": "^2.4.2",
"@shopify/polaris": "^4.24.0",
"@zeit/next-css": "^1.0.1",
"apollo-boost": "^0.4.9",
"dotenv": "^8.2.0",
"graphql": "^14.5.8",
"isomorphic-fetch": "^2.1.1",
"js-cookie": "^2.2.1",
"koa": "^2.12.0",
"koa-router": "^8.0.6",
"koa-session": "^5.13.1",
"next": ">=9.3.2",
"next-env": "^1.1.0",
"react": "^16.10.1",
"react-apollo": "^3.1.5",
"react-dom": "^16.10.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-stage-3": "^7.0.0",
"babel-jest": "25.2.4",
"babel-register": "^6.26.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"husky": "^4.2.5",
"jest": "25.2.4",
"lint-staged": "^10.2.7",
"nodemon": "^2.0.4",
"prettier": "2.0.2",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.13.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
}
}