-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "react-news",
"author": "Daniel Soares <daniel.soares@me.com>",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"clean": "rm -rf node_modules .next",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,md,mdx}\"",
"postversion": "git push --tags && git push"
},
"dependencies": {
"@prismicio/client": "^5.1.0",
"@stripe/stripe-js": "^1.16.0",
"axios": "^0.24.0",
"faunadb": "^4.3.0",
"next": "11.1.3",
"next-auth": "^3.27.3",
"prismic-dom": "^2.2.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"stripe": "^8.164.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@tailwindcss/typography": "^0.4.1",
"@types/node": "^16.4.0",
"@types/prismic-dom": "^2.1.1",
"@types/react": "17.0.38",
"@types/styled-components": "^5.1.11",
"@types/tailwindcss": "^2.2.1",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.0.0",
"eslint": "8.5.0",
"eslint-config-next": "11.1.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.1",
"lint-staged": "^12.0.0",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"react-is": "^17.0.2",
"tailwindcss": "^2.2.4",
"twin.macro": "^2.6.2",
"typescript": "4.3.5",
"webpack": "^5.45.1"
},
"babelMacros": {
"twin": {
"preset": "styled-components"
}
}
}