-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.51 KB
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
{
"name": "remnant-collectables",
"version": "1.0.5",
"private": true,
"description": "remnant-collectables",
"author": "Robin Kuiper",
"keywords": [
"gatsby"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "npx simple-git-hooks",
"start": "cross-env ENABLE_GATSBY_REFRESH_ENDPOINT=true gatsby develop",
"preBuild": "sh ./scripts/preBuilt.sh",
"build": "gatsby build",
"build:test": "pnpm lint:gitlab && pnpm build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"prettier": "prettier --write \"**/*.{jsx,tsx,js,ts,json,yml,yaml,md}\"",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"lint:html": "eslint ./src --format html",
"lint:gitlab": "eslint --format gitlab ./src",
"fix": "pnpm prettier && pnpm lint:fix",
"test": "jest",
"test:watch": "jest --watch",
"test:gitlab": "jest --config ./jest.config.js --collectCoverage --coverageDirectory=\"./coverage\" --ci --reporters=default --reporters=jest-junit --watchAll=false"
},
"dependencies": {
"@react-oauth/google": "^0.11.1",
"@vercel/analytics": "^1.0.2",
"babel-plugin-styled-components": "^2.1.4",
"dotenv": "^16.3.1",
"framer-motion": "^10.15.1",
"gatsby": "^5.11.0",
"gatsby-plugin-gdpr-cookies": "^2.0.9",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-google-gtag": "^5.11.0",
"gatsby-plugin-image": "^3.11.0",
"gatsby-plugin-pnpm": "^1.2.10",
"gatsby-plugin-sharp": "^5.11.0",
"gatsby-plugin-sitemap": "^6.11.0",
"gatsby-plugin-styled-components": "^6.11.0",
"gatsby-source-filesystem": "^5.11.0",
"gatsby-transformer-sharp": "^5.11.0",
"google-auth-library": "^9.0.0",
"googleapis": "^124.0.0",
"react": "^18.2.0",
"react-cookie-consent": "^8.0.1",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.10.1",
"react-modal": "^3.16.1",
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.3",
"react-toggle": "^4.1.3",
"react-tooltip": "^5.20.0",
"styled-components": "^6.0.7"
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@semantic-release/gitlab": "^12.0.5",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/eslint": "^8.44.2",
"@types/eslint-config-prettier": "^6.11.0",
"@types/identity-obj-proxy": "^3.0.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.10",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/react-helmet": "^6.1.6",
"@types/react-modal": "^3.16.0",
"@types/react-toggle": "^4.0.3",
"@types/semantic-release": "^20.0.1",
"@types/styled-components": "^5.1.26",
"@types/testing-library__jest-dom": "^5.14.9",
"babel-jest": "^29.6.2",
"babel-preset-gatsby": "^3.11.0",
"cross-env": "^7.0.3",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-formatter-gitlab": "^5.0.0",
"eslint-plugin-deprecation": "^1.5.0",
"gatsby-plugin-react-helmet": "^6.11.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jest-junit": "^16.0.0",
"nano-staged": "^0.8.0",
"prettier": "^3.0.1",
"semantic-release": "^21.0.7",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.1.6"
},
"nano-staged": {
"src/*.{js,ts,jsx,tsx}": [
"pnpm prettier",
"pnpm lint:fix"
]
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
}
}