forked from Shopify/product-reviews-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.18 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
{
"name": "product-reviews-sample-app",
"version": "1.0.0",
"description": "Sample Shopify app showcasing various core platform features",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon ./server/index.js --watch ./server/index.js",
"build": "NEXT_TELEMETRY_DISABLED=1 next build",
"start": "cross-env NODE_ENV=production node ./server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/product-reviews-sample-app.git"
},
"author": "Shopify Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shopify/product-reviews-sample-app/issues"
},
"dependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"@babel/runtime": "^7.17.2",
"@koa/cors": "^3.1.0",
"@shopify/app-bridge-react": "^2.0.13",
"@shopify/app-bridge-utils": "^2.0.13",
"@shopify/dates": "^1.1.3",
"@shopify/koa-shopify-auth": "^4.1.2",
"@shopify/polaris": "^9.0.0",
"@shopify/polaris-icons": "^4.17.0",
"@shopify/react-hooks": "^2.0.1",
"apollo-boost": "^0.4.9",
"async": "^3.2.0",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"graphql": "^14.5.8",
"isomorphic-fetch": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"nanoid": "^3.1.23",
"next": "^10.0.4",
"react": "^16.10.1",
"react-apollo": "^3.1.3",
"react-dom": "^16.10.1",
"swr": "^0.5.6",
"use-persisted-state": "^0.3.3",
"webpack": "^5.69.1"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/register": "^7.0.0",
"core-js": "^3.21.1",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.0",
"prettier": "2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write"
]
}
}