-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "parcel-react-boilerplate",
"version": "2.0.0",
"main": "src/index.js",
"license": "MIT",
"author": "dastasoft <dastasoft@protonmail.com> (https://dastasoft.com)",
"scripts": {
"start": "parcel --no-cache public/index.html",
"build": "parcel build public/*",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx",
"prepare": "husky install"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.12.1",
"autoprefixer": "^10.0.1",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2"
},
"lint-staged": {
"*.{js,jsx}": [
"yarn lint",
"yarn format"
]
}
}