-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.02 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"homepage": ".",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint \"**/*.{ts,tsx}\" --quiet",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test --watchAll=false --bail"
}
},
"lint-staged": {
"*.{js,tsx}": [
"yarn format",
"yarn lint --fix",
"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"
]
},
"dependencies": {
"@reach/router": "^1.2.1",
"@rebass/components": "^4.0.0-1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "^5.0.1",
"react-type-animation": "^3.1.0",
"react-typing-animation": "^1.6.2",
"styled-components": "^4.3.1",
"styled-system": "^5.0.6"
},
"devDependencies": {
"@types/enzyme": "^3.9.3",
"@types/jest": "^24.0.14",
"@types/node": "^12.0.8",
"@types/reach__router": "^1.2.4",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^5.1.0",
"@types/styled-system": "^4.2.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-runtime": "^6.26.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "^2.0.1",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"typescript": "^5.1.6"
}
}