-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.3 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
91
{
"name": "300",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"plop": "plop",
"lint": "eslint . --fix",
"dev": "next dev",
"build": "next build",
"start": "next start",
"prebuild": "yarn fauna",
"fauna": "fauna-up",
"fauna-override": "fauna-gql --override"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@ant-design/icons": "^4.2.1",
"@apollo/client": "^3.0.2",
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "^1.8.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"antd": "^4.4.1",
"axios": "^0.19.2",
"babel-plugin-import": "^1.13.0",
"contentful-import": "^7.8.7",
"cookie": "^0.4.1",
"dotenv": "^8.2.0",
"fauna-up": "^0.0.2",
"faunadb": "^2.14.2",
"framer-motion": "^1.11.1",
"graphql": "^15.3.0",
"graphql-request": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"lerna": "^3.22.1",
"less": "^3.11.3",
"less-vars-to-js": "^1.3.0",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"moment": "^2.27.0",
"next": "9.4.4",
"nextjs-progressbar": "^0.0.5",
"null-loader": "^4.0.0",
"postcss-browser-reporter": "^0.6.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-url": "^8.0.0",
"qs": "^6.9.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"sass": "^1.26.9",
"stripe": "^8.68.0",
"styled-jsx": "^3.3.0",
"swr": "^0.2.3",
"vercel": "^19.1.1"
},
"devDependencies": {
"@types/node": "^14.0.14",
"@types/qs": "^6.9.3",
"@types/react": "^16.9.41",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-unused-imports": "^0.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"plop": "^2.7.1",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
}
}