-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.71 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
{
"name": "mini-project-team1",
"version": "1.0.0",
"description": "",
"main": "index.jsx",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "webpack --mode production",
"lint": "eslint src/**",
"lint:fix": "eslint --fix src/**"
},
"keywords": [],
"author": "PurpleCode",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^7.12.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.14.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",
"file-loader": "^6.2.0",
"history": "^5.0.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"husky": "4.3.0",
"prettier": "2.1.2",
"pretty-quick": "3.1.0",
"webpack": "^5.1.3",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"css-loader": "^5.0.0",
"d3": "^6.3.1",
"firebase": "^8.0.0",
"react": "^16.14.0",
"react-copy-to-clipboard": "5.0.3",
"react-countup": "^4.3.3",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0",
"react-share": "^4.3.1",
"style-loader": "^2.0.0",
"styled-components": "^5.2.1",
"styled-reset": "^4.3.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}