-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 2.28 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
{
"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",
"build": "next build",
"start": "NODE_ENV=production node --tls-min-v1.2 ./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.10.3",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.3",
"@babel/register": "^7.10.3",
"@shopify/app-bridge-react": "^1.24.0",
"@shopify/app-cli-node-generator-helper": "^1.2.1",
"@shopify/koa-shopify-auth": "^3.1.63",
"@shopify/koa-shopify-graphql-proxy": "^4.0.0",
"@shopify/koa-shopify-webhooks": "^2.4.2",
"@shopify/polaris": "^4.26.1",
"@zeit/next-css": "^1.0.1",
"apollo-boost": "^0.4.9",
"aws-sdk": "^2.701.0",
"axios": "^0.19.2",
"bottleneck": "^2.19.5",
"cookies-next": "^1.1.3",
"cron": "^1.8.2",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"graphql": "^15.1.0",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.2.1",
"koa": "^2.12.1",
"koa-body": "^4.2.0",
"koa-router": "^9.0.1",
"koa-session": "^6.0.0",
"koa2-cors": "^2.0.6",
"liquidjs": "^9.12.0",
"lodash": "^4.17.15",
"next": "^9.4.4",
"next-env": "^1.1.1",
"node-fetch": "^2.6.0",
"nodemailer": "^6.4.10",
"react": "^16.13.1",
"react-apollo": "^3.1.5",
"react-dom": "^16.13.1",
"utf8-to-ansi": "^1.0.3"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-stage-3": "^7.8.3",
"babel-jest": "26.0.1",
"babel-register": "^6.26.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"husky": "^4.2.5",
"jest": "26.0.1",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"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"
]
}
}