-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.37 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
{
"name": "cra-template-airbnb-fast-refresh",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"prettify": "prettier --write './template/src/**/*.js'",
"lint": "eslint './template/src/**/*.js'"
},
"keywords": [
"react",
"create-react-app",
"cra-template",
"template",
"airbnb",
"enzyme",
"eslint",
"react-router",
"react-router-dom",
"prettier"
],
"description": "A quick start Create React App template with Airbnb & Prettier ESLint configuration and React Fast Refresh.",
"main": "template.json",
"repository": {
"type": "git",
"url": "https://github.com/schmuecker/cra-template-airbnb-fast-refresh",
"directory": "/"
},
"engines": {
"node": ">=10"
},
"bugs": {
"url": "https://github.com/schmuecker/cra-template-airbnb-fast-refresh/issues"
},
"files": [
"template",
"template.json"
],
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-import-helpers": "1.0.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "4.0.0",
"prettier": "2.0.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest",
"access": "public"
}
}