-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "app-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"deploy:preview": "vercel",
"deploy:prod": "vercel --prod"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^2.3.0",
"@shopify/app-bridge": "^1.27.2",
"@shopify/app-bridge-react": "^1.27.2",
"@shopify/polaris": "^4.27.0",
"body-parser": "^1.19.0",
"graphql": "^15.3.0",
"graphql-tag": "^2.11.0",
"iron-store": "^1.3.0",
"lodash": "^4.17.20",
"next": "^9.5.3",
"node-fetch": "^2.6.1",
"parse-link-header": "^1.0.1",
"raw-body": "^2.4.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"urql": "^1.10.1",
"use-http": "^1.0.13"
},
"devDependencies": {
"@types/lodash": "^4.14.161",
"@types/node": "^13.13.19",
"@types/node-fetch": "^2.5.7",
"@types/react": "^16.9.49",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.9.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"postcss-preset-env": "^6.7.0",
"tailwindcss": "^1.8.9",
"typescript": "^3.9.7",
"vercel": "^19.2.0"
}
}