-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.84 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.84 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
{
"name": "parcel",
"version": "1.0.0",
"private": true,
"description": "",
"main": "src/index.jsx",
"browserslist": [
"last 1 version",
"> 1%",
"IE 10"
],
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build src/index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Roland Abregorivas",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.5",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"parcel-bundler": "^1.12.3",
"parcel-plugin-static-files-copy": "^2.1.2",
"prettier": "1.18.2"
},
"dependencies": {
"@material-ui/core": "^4.2.0",
"@material-ui/icons": "^4.0.1",
"@material-ui/styles": "^4.0.2",
"clsx": "^1.0.4",
"escape-string-regexp": "^2.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-h5-audio-player": "^1.2.1",
"react-hot-loader": "^4.12.6",
"react-pdf": "^4.1.0",
"react-swipeable-views": "^0.13.3",
"react-swipeable-views-utils": "^0.13.3",
"sort-by": "^1.2.0",
"uuid": "^3.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint"
],
"*.{js,jsx,css,json,md}": [
"prettier --write",
"git add"
]
},
"staticFiles": {
"staticPath": "static",
"watcherGlob": false
}
}