-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
139 lines (139 loc) · 3.69 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "money-printer-go-brrr",
"description": "Print it, baby!",
"homepage": "https://brrr.money",
"repository": "https://github.com/memetic-institute/money-printer-go-brrr",
"author": "IMRD <[email protected]> (https://memetic.institute)",
"version": "2.1.0",
"license": "MIT",
"keywords": [
"memes",
"federal-reserve"
],
"funding": "https://memetic.institute/gib",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit --skipLibCheck",
"deploy": "vercel --prod",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --check .",
"format": "prettier --write .",
"prepare": "husky install",
"semantic-release": "cross-env HUSKY=0 semantic-release"
},
"engines": {
"node": ">=12.22.0"
},
"eslintConfig": {
"plugins": [
"prettier"
],
"extends": [
"next/core-web-vitals",
"prettier"
]
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"singleQuote": true
},
"release": {
"branch": [
"master",
"next"
],
"preset": "conventionalcommits",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
}
}
],
[
"@semantic-release/changelog",
{
"changelogTitle": "# Changelog\n\nAll notable changes to this project will be documented in this file. See\n[Conventional Commits](https://conventionalcommits.org) for commit guidelines."
}
],
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"dependencies": {
"@fortawesome/fontawesome-pro": "^6.1.0",
"@fortawesome/fontawesome-svg-core": "^6.1.0",
"@fortawesome/free-brands-svg-icons": "^6.1.0",
"@fortawesome/pro-solid-svg-icons": "^6.1.0",
"@fortawesome/react-fontawesome": "^0.1.18",
"csshake": "https://github.com/elrumordelaluz/csshake.git",
"focus-visible": "^5.2.0",
"next": "12.1.0",
"next-compose-plugins": "^2.2.1",
"next-pwa": "^5.4.6",
"normalize.css": "^8.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "^17.0.2",
"react-player": "^2.9.0",
"react-slider": "^1.3.1",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.2.1",
"@next/bundle-analyzer": "^12.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.41",
"@types/react-dom": "^17.0.14",
"@types/react-slider": "^1.3.1",
"@types/styled-components": "^5.1.24",
"cross-env": "^7.0.3",
"eslint": "^8.11.0",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.0",
"typescript": "^4.5.5",
"webpack-bundle-analyzer": "^4.5.0"
}
}