-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "guess-the-dota-hero",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"download-icons": "node scripts/load_hero_icons.js",
"download-meta": "node scripts/load_hero_meta.js"
},
"dependencies": {
"axios": "^1.1.3",
"moment": "^2.29.4",
"next": "12.3.1",
"react": "18.2.0",
"react-countup": "^6.3.2",
"react-dom": "18.2.0",
"react-modal": "^3.16.1",
"react-responsive": "^9.0.0",
"react-select": "^5.5.7",
"react-transition-group": "^4.4.5",
"react-typed": "^1.2.0"
},
"devDependencies": {
"@types/node": "18.11.3",
"@types/react": "18.0.21",
"@types/react-countup": "^4.3.1",
"@types/react-modal": "^3.13.1",
"@types/react-responsive": "^8.0.5",
"eslint": "8.26.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "4.8.4"
}
}