-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.32 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.32 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
{
"name": "hashtag-hotline",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@material-ui/core": "^4.5.2",
"@material-ui/icons": "^4.5.1",
"@material-ui/styles": "^4.6.0",
"aws-amplify": "^1.2.4",
"aws-amplify-react": "^2.5.4",
"axios": "^0.19.0",
"better-docs": "^1.4.7",
"classnames": "^2.2.6",
"clsx": "^1.0.4",
"g": "^2.0.1",
"jsdoc": "^3.6.3",
"material-ui-chip-input": "^1.0.0",
"parcel-bundler": "^1.12.4",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-map-gl": "^5.1.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-window": "^1.8.5",
"recharts": "^1.8.5",
"shortid": "^2.2.15",
"tinycolor2": "^1.4.1",
"twit": "^2.2.11"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --verbose",
"coverage": "react-scripts test --env=jsdom --coverage",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test:staged": "cross-env CI=true react-scripts test --env=jsdom --findRelatedTests",
"precommit": "lint-staged",
"format": "prettier --write \"src/**/*.+(js|md|ts|css|sass|less|graphql|yml|yaml|scss|json|vue)\"",
"eject": "react-scripts eject",
"docs": "jsdoc -c ./jsdoc.json"
},
"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": "^4.2.3",
"@testing-library/react": "^9.3.1",
"cross-env": "^6.0.3",
"dotenv": "^8.2.0",
"eslint": "^6.7.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-jest": "^23.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"faker": "^4.1.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"puppeteer": "^2.0.0"
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint src/ --fix",
"prettier --write",
"cross-env CI=true react-scripts test --env=jsdom --findRelatedTests",
"git add"
]
}
}