-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.86 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.86 KB
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
{
"name": "react-typescript-boilerplate",
"description": "A ",
"version": "1.0.0",
"private": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@reach/router": "^1.3.4",
"@types/jest": "^26.0.14",
"@types/marked": "^1.1.0",
"@types/node": "^14.11.8",
"@types/reach__router": "^1.3.5",
"@types/react": "^16.9.52",
"@types/react-dom": "^16.9.8",
"@types/react-syntax-highlighter": "^13.5.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"marked": "^1.2.2",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.3",
"react-syntax-highlighter": "^15.4.3",
"typescript": "^4.0.3"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,md}": [
"prettier --single-quote --write"
],
"src/**/*.scss": [
"stylelint --fix"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.2",
"@testing-library/user-event": "^7.1.2",
"node-sass": "^4.14.1",
"postcss-normalize": "^9.0.0",
"stylelint": "^13.7.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0"
},
"author": "Tommy Scribble",
"email": "tommy@scribbledesign.co.uk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TommyScribble/react-typescript-biolerplate.git"
},
"homepage": "https://react-boilerplate.scribbledesign.co.uk/",
"keywords": [
"boilerplate",
"reactjs",
"typescript",
"testing",
"scss",
"setup"
]
}