-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.41 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.41 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
84
85
86
87
88
89
{
"name": "portfolio",
"version": "1.0.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/node": "^20.11.17",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"animate.css": "^4.1.0",
"axios": "^1.12.0",
"i18next": "^23.10.1",
"i18next-browser-languagedetector": "^7.2.1",
"pattern.css": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^15.0.3",
"react-icons": "^4.3.1",
"react-scripts": "5.0.0",
"react-spinners": "^0.13.8",
"typescript": "^5.3.3",
"zustand": "^5.0.8"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "pnpm run build",
"deploy": "gh-pages -d build",
"tailwind:css": "tailwind build -i ./src/tailwind.css -c tailwind.config.js -o ./src/index.css",
"lint": "eslint './src/**/*.{ts, tsx}'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"homepage": "https://melanchoy14.github.io/portfolio",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": ["**/*.ts", "**/*.tsx"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
},
"project": "./tsconfig.json"
},
"extends": [
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off"
}
}
]
},
"devDependencies": {
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^5.0.0",
"postcss": "^8.4.31",
"prettier": "^2.0.5",
"tailwindcss": "^3.0.23"
}
}