-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "bluspellbook",
"version": "1.0.0",
"main": "index.js",
"author": "Aziz Arar <aziz.n.arar@gmail.com> (https://bodmass.github.io)",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"prettier": "prettier --ignore-path .gitignore --write .",
"lint": "eslint -c .eslintrc.js --ext .tsx,.ts pages",
"get-screenshots": "ts-node-script scripts/get-screenshots"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,md,mdx,css}": "yarn prettier",
"*.{js,jsx,tsx,ts}": [
"yarn prettier",
"yarn lint --fix"
],
"*.{tsx,ts}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"fathom-client": "^3.0.0",
"next": "^11.1.1",
"next-seo": "^4.7.3",
"object-path": "^0.11.8",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-ga": "^3.2.0",
"react-icons": "^3.11.0"
},
"devDependencies": {
"@types/gtag.js": "^0.0.3",
"@types/node": "^14.11.1",
"@types/react": "^16.9.49",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
}
}