-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.31 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": "react-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for new React projects. ",
"main": "index.js",
"scripts": {
"build": "parcel build src/index.html",
"clear:build-cache": "rm -rf .cache/ dist/",
"dev": "parcel src/index.html --open",
"format": "prettier --write \"src/**/*.{js,jsx,css,json}\"",
"format:check": "prettier --list-different \"src/**/*.{js,jsx,css,json}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deduced/react-boilerplate.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/deduced/react-boilerplate/issues"
},
"homepage": "https://github.com/deduced/react-boilerplate#readme",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@testing-library/cypress": "^6.0.0",
"@testing-library/react": "^10.4.8",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"cypress": "^4.12.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"jest": "^26.4.0",
"lint-staged": "^10.2.11",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5"
},
"dependencies": {
"@emotion/babel-preset-css-prop": "^10.0.27",
"@emotion/core": "^10.0.28",
"@reach/router": "^1.3.4",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint . --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": [
"last 2 Chrome versions",
"last 2 ChromeAndroid versions",
"last 2 Firefox versions",
"last 2 FirefoxAndroid versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 2 Edge versions",
"last 2 Opera versions",
"last 2 OperaMobile versions"
]
}