-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.59 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
{
"name": "dc-auto-refresher",
"version": "2.20.1",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/node": "20.3.3",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"next": "^13.4.9",
"postcss": "8.4.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-time-picker": "^6.2.1",
"react-tooltip": "^5.21.5",
"tailwindcss": "3.3.2",
"typescript": "5.1.6",
"usehooks-ts": "^2.9.1",
"worker-timers": "^7.1.1"
},
"scripts": {
"preview": "vite preview",
"dev": "next dev",
"build": "next build",
"start": "next start",
"ts:check": "tsc --noEmit",
"lint": "next lint",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"fix": "npm run lint:fix && npm run format"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "^17.0.13",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"autoprefixer": "^10.4.2",
"eslint": "8.44.0",
"eslint-config-next": "13.4.7",
"eslint-config-prettier": "^8.8.0",
"postcss": "^8.4.5",
"prettier": "^3.0.3"
}
}