-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.79 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
{
"name": "portfolio",
"version": "1.1.0",
"homepage": ".",
"private": true,
"dependencies": {
"crypto-js": "^4.2.0",
"firebase": "^11.4.0",
"framer-motion": "^11.15.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react-router-dom": "^7.1.1",
"react-scripts": "5.0.1",
"recharts": "^3.6.0",
"uuid": "^11.1.0",
"web-vitals": "^4.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "cross-env CI=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "npm run build && wrangler deploy",
"preview": "npm run build && wrangler dev",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx}\" --fix",
"lint:strict": "eslint \"src/**/*.{js,jsx}\" --max-warnings 0",
"lint:projects": "eslint \"src/projects/**/*.{js,jsx}\"",
"lint:pages": "eslint \"src/pages/**/*.{js,jsx}\"",
"lint:components": "eslint \"src/components/**/*.{js,jsx}\"",
"lint:traffic": "eslint \"src/pages/Traffic/**/*.{js,jsx}\" \"src/services/analyticsStatsUpdater.js\"",
"lint:services": "eslint \"src/services/**/*.{js,jsx}\"",
"lint:report": "eslint \"src/**/*.{js,jsx}\" -f unix",
"lint:ci": "cross-env CI=true eslint \"src/**/*.{js,jsx}\" --max-warnings 0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"cross-env": "^10.1.0",
"wrangler": "^4.80.0"
}
}