-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.76 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
{
"name": "quriobot-shopify",
"version": "1.0.0",
"description": "Shopify's node app for CLI tool",
"scripts": {
"test": "jest",
"dev": "cross-env NODE_ENV=development nodemon ./server/index.js --watch ./server/index.js",
"prebuild": "next telemetry disable",
"build": "next build",
"start": "cross-env NODE_ENV=production node ./server/index.js",
"migrate": "knex migrate:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/shopify-app-node.git"
},
"author": "Shopify Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/shopify/shopify-app-node/issues"
},
"dependencies": {
"@babel/core": "7.12.10",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"@koa/cors": "^3.1.0",
"@monaco-editor/react": "^4.3.1",
"@shopify/app-bridge-react": "^2.3.0",
"@shopify/app-bridge-utils": "^2.3.0",
"@shopify/koa-shopify-auth": "^4.1.5",
"@shopify/polaris": "^10.12.0",
"apollo-boost": "^0.4.9",
"array-move": "^3.0.1",
"axios": "^0.21.4",
"compare-versions": "^5.0.1",
"cron": "^2.2.0",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"font-picker-react": "^3.5.2",
"formik": "^2.2.9",
"graphql": "^14.5.8",
"isomorphic-fetch": "^3.0.0",
"knex": "^2.4.2",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-helmet": "^6.1.0",
"koa-morgan": "^1.0.1",
"koa-router": "^10.0.0",
"koa-session": "^6.1.0",
"koa-static": "^5.0.0",
"license-key-gen": "^0.1.4",
"lodash": "^4.17.21",
"mixpanel-browser": "^2.43.0",
"mongoose": "^5.13.9",
"mysql": "^2.18.1",
"next": "^10.0.4",
"next-env": "^1.1.0",
"node-fetch": "^2.6.1",
"react": "^16.10.1",
"react-apollo": "^3.1.3",
"react-color": "^2.19.3",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^16.10.1",
"react-driftjs": "^1.2.2",
"react-icons": "^4.2.0",
"react-select": "^5.2.1",
"react-sortable-hoc": "^2.0.0",
"redis": "^3.1.2",
"sass": "^1.42.1",
"swr": "^1.0.1",
"webpack": "^4.44.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-stage-3": "^7.0.0",
"babel-jest": "26.6.3",
"babel-register": "^6.26.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-uglify": "^3.0.2",
"husky": "^4.3.6",
"jest": "26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.0",
"prettier": "2.2.1",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.14.0"
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
]
}
}