-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.65 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
{
"name": "space-jelly-website",
"homepage": "https://spacejelly.dev",
"version": "0.1.0",
"license": "MIT",
"author": "Colby Fayock <[email protected]>",
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "yarn prettier --config ./config/prettier.config.js --write .",
"format:nopath": "yarn prettier --config ./config/prettier.config.js --write",
"lint": "yarn prettier --config ./config/prettier.config.js --check .",
"start": "next start"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "yarn format:nopath"
},
"dependencies": {
"@apollo/client": "^3.7.2",
"@next/font": "^13.1.1",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"fuse.js": "^6.6.2",
"graphql": "^16.6.0",
"he": "^1.2.0",
"loader-utils": "^3.2.1",
"next": "13.0.6",
"next-cloudinary": "^3.2.0",
"next-compose-plugins": "^2.2.1",
"next-plausible": "^3.7.2",
"parameterize": "^1.0.0",
"path": "^0.12.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-intersection-observer": "^9.4.1",
"rehype-highlight": "^6.0.0",
"rehype-parse": "^8.0.4",
"rehype-stringify": "^9.0.3",
"rss": "^1.2.2",
"sass": "^1.56.2",
"style.css": "^1.0.3",
"unified": "^10.1.2",
"unist-util-visit": "^4.1.1"
},
"devDependencies": {
"husky": "4.3.8",
"lint-staged": ">=13.1.0",
"prettier": "2.8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/colbyfayock/spacejelly.dev"
},
"bugs": {
"url": "https://github.com/colbyfayock/spacejelly.dev/issues"
}
}