-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "shopify-app-boilerplate",
"version": "0.1.0",
"description": "Shopify embededded app boilerplate",
"main": "dist/index.js",
"author": "bek <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"prestart": "tsc --build ./server",
"dev": "cross-env NODE_ENV=development yarn prestart && node ./dist"
},
"dependencies": {
"@shopify/app-bridge": "^1.30.0",
"@shopify/app-bridge-react": "^1.30.0",
"@shopify/app-bridge-utils": "^1.30.0",
"@shopify/polaris": "^6.2.0",
"@shopify/shopify-api": "^1.2.1",
"axios": "^0.21.1",
"crypto-js": "^4.0.0",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.12.3",
"next": "^10.0.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.2.3"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/crypto-js": "^4.0.1",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.11",
"@types/module-alias": "^2.0.0",
"@types/mongoose": "^5.10.4",
"@types/next": "^9.0.0",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"cross-env": "^7.0.3",
"module-alias": "^2.2.2"
}
}