-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.63 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"cacheDirectories": [
".next/cache"
],
"name": "fabstore",
"description": "An E-commerce site made with Next.js and Payload CMS",
"license": "MIT",
"keywords": [
"payload",
"cms",
"nextjs",
"ecommerce"
],
"version": "0.0.1",
"private": false,
"author": "Fab",
"scripts": {
"lint": "next lint",
"build:next": "next build",
"build:server": "tsc --project tsconfig.server.json",
"build:payload": "payload build",
"build": "NODE_ENV=production yarn build:payload && yarn build:server && NEXT_BUILD=true node dist/index.js",
"dev": "nodemon dev.js",
"seed": "node seed/index.js",
"start": "NODE_ENV=production node dist/index.js"
},
"dependencies": {
"@apollo/client": "^3.4.10",
"@apollo/link-error": "^2.0.0-beta.3",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/register": "^7.12.10",
"@chakra-ui/react": "^1.6.7",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"apollo-link-rest": "^0.8.0-beta.0",
"apollo-upload-client": "^16.0.0",
"cloudinary": "^1.26.2",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"escape-html": "^1.0.3",
"express": "^4.17.1",
"framer-motion": "^4",
"graphql-anywhere": "^4.2.7",
"lodash": "^4.17.21",
"next": "^11.1.0",
"next-with-apollo": "^5.2.1",
"nodemon": "^2.0.12",
"payload": "^0.9.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.15.3",
"react-icons": "^4.3.1",
"react-rating": "^2.0.5",
"react-select": "^5.1.0",
"react-slick": "^0.28.1",
"slate": "^0.63.0",
"slate-history": "^0.65.3",
"slate-react": "^0.65.2",
"slick-carousel": "^1.8.1",
"streamifier": "^0.1.1",
"stripe": "^8.171.0",
"typescript": "^4.3.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@trbl/eslint-config": "^1.2.4",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.11",
"@types/react": "^17.0.15",
"@types/streamifier": "^0.1.0",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-wesbos": "1.0.1",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.16.0",
"eslint-plugin-jest-dom": "^3.0.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"prettier": "^2.1.1",
"ts-node": "^9.1.1"
}
}