forked from AndreMiras/edilkamin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.2 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
{
"name": "edilkamin",
"homepage": "https://andremiras.github.io/edilkamin/",
"version": "2024.12.08",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"@fortawesome/free-brands-svg-icons": "^6.7.1",
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@fortawesome/react-fontawesome": "^0.2.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^22.10.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"assert": "^2.0.0",
"axios": "^0.26.0",
"bootstrap": "^5.3.3",
"edilkamin": "^1.5.0",
"next": "13",
"react": "^18",
"react-bootstrap": "^2.10.6",
"react-dom": "^18",
"react-scripts": "5.0.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"dev": "next dev",
"dev:debug": "NODE_OPTIONS='--inspect' next dev",
"build": "NEXT_PUBLIC_GIT_DESCRIBE=$(git describe --tags --always) next build",
"start": "next start",
"lint:prettier": "prettier --check src docs .github *.json *.md *.mjs",
"format:prettier": "prettier --write src docs .github *.json *.md *.mjs",
"lint:eslint": "eslint src",
"format:eslint": "eslint --fix src",
"lint": "yarn lint:prettier && yarn lint:eslint",
"format": "yarn format:prettier && yarn format:eslint"
},
"engines": {
"node": "22.x"
},
"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": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"eslint-config-next": "13",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^2.5.1",
"typescript": "^5.7.2"
}
}