-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.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
{
"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": {
"@apollo/react-hooks": "^3.1.3",
"@babel/core": "7.7.5",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"@shopify/app-bridge-react": "^1.19.0",
"@shopify/app-cli-node-generator-helper": "^1.2.1",
"@shopify/koa-shopify-auth": "^3.1.56",
"@shopify/koa-shopify-graphql-proxy": "^3.3.0",
"@shopify/koa-shopify-webhooks": "^2.4.0",
"@shopify/polaris": "^4.15.1",
"@zeit/next-css": "^1.0.1",
"apollo-boost": "^0.4.7",
"axios": "^0.21.1",
"bootstrap": "^4.4.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^7.10.0",
"firebase-admin": "^8.9.2",
"graphql": "^14.6.0",
"input-moment": "^0.4.0",
"isomorphic-fetch": "^2.1.1",
"js-cookie": "^2.2.1",
"koa": "^2.8.2",
"koa-body": "^4.1.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-session": "^5.13.1",
"koa-static": "^5.0.0",
"mongodb": "^3.5.4",
"mysql": "^2.18.1",
"next": "^11.1.0",
"next-env": "^1.1.0",
"rc-time-picker": "^3.7.3",
"react": "^16.13.0",
"react-apollo": "^2.5.8",
"react-calendar": "^2.19.2",
"react-datepicker": "^2.14.0",
"react-datetime-picker": "^2.9.0",
"react-dom": "^16.13.0",
"store-js": "^2.0.4",
"template-file": "^3.1.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-stage-3": "^7.8.3",
"babel-jest": "24.9.0",
"babel-register": "^6.26.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"nodemon": "^2.0.0",
"prettier": "1.19.1",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.12.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"moduleNameMapper": {
"\\.(css|less)$": "./__mocks__/styleMock.js"
},
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "./__mocks__/styleMock.js"
}
}
}