-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 2.32 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
{
"name": "process-analytics",
"version": "1.0.0",
"private": true,
"description": "Process Analytics",
"author": "Celine Souchet",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"check-types": "tsc -p . --noEmit",
"lint": "eslint \"{src/**,.}/*.{js,ts,tsx,mdx}\" --max-warnings 0 --fix",
"lint-check": "eslint \"{src/**,.}/*.{js,ts,tsx,mdx}\" --max-warnings 0",
"prepare": "husky"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mdx-js/react": "^3.1.0",
"@mui/icons-material": "^6.1.8",
"@mui/material": "^6.1.8",
"@tippyjs/react": "^4.2.6",
"chroma-js": "^3.1.2",
"react": "^18.3.1",
"react-awesome-reveal": "^4.2.14",
"react-dom": "^18.3.1",
"vanilla-cookieconsent": "^3.0.1"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/chroma-js": "^2.4.4",
"@types/eslint__js": "^8.42.3",
"@types/react": "^18.3.12",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-mdx": "^3.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-notice": "^1.0.0-eslint9",
"eslint-plugin-prettier": "^5.2.1",
"gatsby": "^5.14.0",
"gatsby-plugin-google-gtag": "^5.14.0",
"gatsby-plugin-mailchimp": "^5.2.2",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-material-ui": "^4.1.0",
"gatsby-plugin-mdx": "^5.14.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sitemap": "^6.14.0",
"gatsby-plugin-typescript": "^5.13.1",
"gatsby-remark-responsive-iframe": "^6.14.0",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-remark": "^6.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
},
"lint-staged": {
"*.{js,ts,tsx,mdx}": [
"npx eslint --fix"
]
}
}