forked from tom-james-watson/wikitrivia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.18 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": "wiki-history-game-www",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev -p 3003",
"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",
"prod": "next export"
},
"dependencies": {
"axios": "^0.21.1",
"classnames": "^2.3.1",
"next": "^12.0.1",
"react": "17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "17.0.2",
"react-github-btn": "^1.2.1",
"react-loader-spinner": "^4.0.0",
"react-spring": "^9.1.1",
"seamless-scroll-polyfill": "^1.2.3",
"tween-functions": "^1.2.0",
"@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": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.5.1",
"sass": "^1.32.10",
"typescript": "^4.4.4"
}
}