-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.63 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
{
"name": "website",
"version": "0.1.0",
"homepage": "https://jonaskordt.com/",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/react-router-dom": "^5.1.6",
"@types/react-youtube-embed": "^1.0.1",
"css-element-queries": "^1.2.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.1",
"react-youtube-embed": "^1.0.3",
"styled-components": "^5.3.3",
"three": "0.149.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "run-p format:*",
"format:js": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format:json": "prettier --write {.,**}/*.json",
"lint": "run-p lint:*",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx",
"compile": "tsc --noEmit -p . --pretty",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"src/**/*.{json}": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.10",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.20",
"@types/three": "0.149.0",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"gh-pages": "^3.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"npm-run-all": "^4.1.5",
"prettier": "2.8.3",
"stylelint": "14.16.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"typescript": "^4.0.3"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.5.0",
"**/@typescript-eslint/parser": "^4.5.0"
}
}