-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.58 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
{
"name": "call-of-cthulhu-chase-tracker",
"version": "0.0.1",
"private": true,
"description": "A Call of Cthulhu chase tracker geared towards Keepers of Arcane Knowledge.",
"author": "Coul Greer",
"keywords": [
"Call",
"of",
"Cthulhu",
"CoC",
"Lovecraftian",
"7e",
"7th",
"Edition",
"Chase",
"Tracker",
"Keeper",
"of",
"Arcane",
"Knowledge"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"heroku-postbuild": "gatsby build",
"type-check": "npx tsc --noEmit",
"lint": "npx eslint src --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"test:watch": "jest --watch"
},
"license": "0BSD",
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@fontsource/fraunces": "^4.5.0",
"@fontsource/open-sans": "^4.5.1",
"@mui/material": "^5.0.1",
"@mui/styles": "^5.0.1",
"classnames": "^2.3.1",
"gatsby": "^3.14.0",
"gatsby-plugin-manifest": "^3.14.0",
"gatsby-plugin-material-ui": "^4.0.3",
"gatsby-plugin-react-helmet": "^4.14.0",
"nanoid": "^3.1.28",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-modal": "^3.14.3",
"react-number-format": "^4.7.3"
},
"devDependencies": {
"@babel/preset-typescript": "^7.15.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.1",
"@testing-library/user-event": "^13.2.1",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"@types/react-modal": "^3.12.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-jest": "^27.2.2",
"babel-preset-gatsby": "^1.14.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.2.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^3.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.2",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
}
}