This repository has been archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
76 lines (76 loc) · 2.15 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
{
"name": "shopify-marketplaces-admin-app",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "webpack --mode production",
"start": "NODE_ENV=production babel-node server/index.js",
"dev": "nodemon --exec babel-node server/index.js --watch server/",
"lint": "eslint --ext .js,.jsx ./",
"test": "NODE_ENV=test jest"
},
"engines": {
"node": "^16.13.1"
},
"resolutions": {
"node-gyp": "9.0.0"
},
"dependencies": {
"@apollo/client": "^3.5.6",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@shopify/admin-graphql-api-utilities": "^1.0.5",
"@shopify/app-bridge": "^2.0.5",
"@shopify/app-bridge-react": "^2.0.5",
"@shopify/app-bridge-utils": "^2.0.5",
"@shopify/channels-ui": "^1.0.3",
"@shopify/polaris": "^9.18.0",
"@shopify/polaris-icons": "^4.12.0",
"@shopify/shopify-api": "^2.0.0",
"apollo-server-express": "^3.6.0",
"babel-loader": "^8.2.3",
"connect-history-api-fallback": "^1.6.0",
"core-js": "^3.20.2",
"css-loader": "^6.5.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"graphql": "^16.1.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.15",
"path": "^0.12.7",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hot-loader": "^4.13.0",
"react-router-dom": "^6.0.2",
"regenerator-runtime": "^0.13.9",
"sequelize": "^6.12.0-beta.1",
"sequelize-cli": "^6.3.0",
"sqlite3": "^5.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-middleware": "^5.2.2",
"webpack-hot-middleware": "^2.25.1"
},
"devDependencies": {
"@graphql-eslint/eslint-plugin": "^3.8.0",
"apollo-server-integration-testing": "^3.0.0",
"babel-jest": "^27.5.1",
"eslint": "^8.4.1",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"umzug": "^3.0.0"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}