-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "wiki-history-game-www",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,scss,json,yml}\"",
"lint": "eslint --max-warnings=0 --cache --ext .js,.ts,.tsx .",
"lint-fix": "eslint --fix --cache --ext .js,.ts,.tsx .",
"start": "next start"
},
"dependencies": {
"axios": "^1.6.7",
"classnames": "^2.3.1",
"next": "^14.2.10",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "18.2.0",
"react-github-btn": "^1.2.1",
"react-loader-spinner": "^4.0.0",
"react-spring": "^9.7.3",
"seamless-scroll-polyfill": "^1.2.3",
"tween-functions": "^1.2.0"
},
"devDependencies": {
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-no-ssr": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.5.1",
"sass": "^1.32.10",
"typescript": "^5.3.3"
}
}