-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
{
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development node -r dotenv/config ./index.js --watch=./server.js",
"build": "next build",
"start": "cross-env NODE_ENV=production node ./index.js",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.15.3",
"@koa/router": "^10.0.0",
"@shopify/koa-shopify-auth": "^4.1.4",
"@shopify/polaris": "^7.1.0",
"@shopify/shopify-api": "^1.4.3",
"cross-env": "^5.2.0",
"koa": "^2.13.0",
"mongodb": "^4.1.3",
"mongoose": "^6.0.12",
"next": "^12.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.4",
"winston": "^3.3.3"
},
"devDependencies": {
"dotenv": "^10.0.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "12.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.3.1"
},
"babel": {
"presets": [
"next/babel"
]
}
}