-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.06 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
{
"name": "dnd5-spell-list",
"private": true,
"description": "Interactive Spell List for \"Dungeons & Dragons 5th edition\" game",
"version": "1.0.0",
"author": "Sergey Sharov <[email protected]>",
"scripts": {
"prepare-data": "ts-node -T scripts/formatSpells",
"build": "npm run prepare-data && gatsby build",
"develop": "npm run prepare-data && gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "ava"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
},
"engines": {
"npm": ">=6.0.0",
"node": ">=14.0.0"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/material": "^5.10.5",
"@reduxjs/toolkit": "^1.8.5",
"@sentry/apm": "^5.27.1",
"@sentry/react": "^7.13.0",
"@tanstack/react-table": "^8.5.13",
"ava": "^4.3.3",
"classnames": "^2.3.2",
"gatsby": "^4.23.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-emotion": "^7.23.0",
"gatsby-plugin-manifest": "^4.23.0",
"gatsby-plugin-material-ui": "^4.1.0",
"gatsby-plugin-minify-classnames": "^4.1.3",
"gatsby-plugin-netlify": "^5.0.1",
"gatsby-plugin-offline": "^5.23.0",
"gatsby-plugin-react-helmet": "^5.23.0",
"gatsby-plugin-react-svg": "^3.1.0",
"gatsby-plugin-resolve-src": "^2.1.0",
"gatsby-plugin-sass": "^5.23.0",
"gatsby-plugin-sentry": "^1.0.1",
"gatsby-plugin-sharp": "^4.23.0",
"gatsby-source-filesystem": "^4.23.0",
"gatsby-transformer-sharp": "^4.23.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"lodash": "^4.17.21",
"markdown-to-jsx": "^7.1.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-redux": "^8.0.2",
"reselect": "^4.1.6",
"sass": "^1.54.9",
"typograf": "Kreozot/typograf",
"use-trace-update": "^1.3.2",
"usehooks-ts": "^2.7.1",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@kreozot/eslint-config": "^1.0.4",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.7.18",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.5",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby-plugin-typescript": "^4.23.0",
"gatsby-plugin-typescript-checker": "^1.1.1",
"js-yaml": "^4.1.0",
"ts-node": "^8.10.2",
"typescript": "^4.8.3"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}