-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
81 lines (81 loc) · 1.67 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
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
{
"name": "portfolio-v2",
"author": "KrishnaMoorthy12",
"version": "2.0.0",
"private": false,
"dependencies": {
"bad-words": "^3.0.4",
"emailjs-com": "^2.6.4",
"node-sass": "^4.14.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-reveal": "^1.2.2",
"react-scripts": "^4.0.3",
"recharts": "^1.8.5",
"workbox-core": "^5.1.4",
"workbox-expiration": "^5.1.4",
"workbox-precaching": "^5.1.4",
"workbox-routing": "^5.1.4",
"workbox-strategies": "^5.1.4"
},
"devDependencies": {
"dotenv": "^8.2.0",
"env-cmd": "^10.1.0",
"prettier": "^2.1.2"
},
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,html,scss}\"",
"format:check": "prettier -c \"**/*.{js,jsx,html,scss}\"",
"start": "env-cmd react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"semi": [
"warn",
"always"
],
"quotes": [
"warn",
"single"
],
"no-console": [
"off",
{
"allow": [
"warn",
"error"
]
}
],
"comma-dangle": [
"warn",
"never"
],
"comma-spacing": [
"warn",
{
"before": false,
"after": true
}
],
"no-empty": "warn",
"no-duplicate-case": "warn",
"curly": "warn"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}