forked from VienDinhCom/next-shopify-storefront
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.05 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
{
"name": "next-shopify-storefront",
"description": "A Shopping Cart built with TypeScript, NextJS, React, Redux, Apollo Client, Shopify Storefront GraphQL API, ... and Material UI.",
"version": "2.0.0",
"license": "MIT",
"author": {
"name": "Vien Dinh",
"email": "maxvien@gmail.com",
"url": "https://github.com/maxvien"
},
"scripts": {
"dev": "nodemon",
"build": "NODE_ENV=development next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node dist/index.js",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --fix .",
"codegen": "graphql-codegen --config graphql.config.json"
},
"dependencies": {
"@material-ui/core": "^4.0.0",
"@material-ui/icons": "^4.0.1",
"@material-ui/styles": "^4.0.1",
"@types/detect-node": "^2.0.0",
"apollo-boost": "^0.4.4",
"cookie-parser": "^1.4.4",
"dayjs": "^1.8.14",
"detect-node": "^2.0.4",
"express": "^4.17.0",
"graphql": "^14.3.1",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.0",
"lodash": "^4.17.11",
"next": "^9.3.3",
"query-string": "^6.5.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux-starter-kit": "^0.5.1",
"styled-jsx": "^3.2.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.2.0",
"@graphql-codegen/typescript": "^1.2.0",
"@graphql-codegen/typescript-operations": "^1.2.0",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.16.1",
"@types/js-cookie": "^2.2.2",
"@types/lodash": "^4.14.132",
"@types/next": "^8.0.5",
"@types/react": "^16.8.17",
"@types/react-dom": "16.8.4",
"@types/react-redux": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@zeit/next-typescript": "^1.1.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-typescript": "^2.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"fork-ts-checker-webpack-plugin": "^1.3.7",
"nodemon": "^1.19.0",
"ts-node": "^8.1.0",
"typescript": "3.4.5"
}
}