-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.01 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
{
"name": "yesmydarkproject-website",
"version": "0.1.0",
"private": true,
"author": "YesMyDark Project contributors",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "next dev",
"appbuild": "next build",
"postappbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"up-latest": "yarn upgrade-interactive --latest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky",
"commit": "commit"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"framer-motion": "^11.0.24",
"gsap": "^3.12.5",
"leaflet": "^1.9.3",
"leaflet-defaulticon-compatibility": "^0.1.1",
"leaflet-easybutton": "^2.4.0",
"next": "^12.3.4",
"next-pwa": "^5.6.0",
"next-seo": "^6.5.0",
"react": "^18.2.0",
"react-aria": "^3.25.0",
"react-aria-components": "^1.0.0-alpha.4",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-leaflet": "^4.2.1",
"react-stately": "^3.23.0",
"react-use": "^17.5.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/prompt-cli": "^19.2.0",
"@types/gtag.js": "^0.0.19",
"@types/leaflet": "^1.9.3",
"@types/react": "^18.2.74",
"autoprefixer": "^10.4.19",
"babel-plugin-preval": "^5.1.0",
"commitlint": "^19.2.1",
"eslint": "^8.57.0",
"eslint-config-next": "^13.5.6",
"eslint-config-sznm": "^1.1.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.23",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^9.5.4",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"standard-version": "^9.3.2",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.1-rc"
}
}