-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 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
{
"name": "team-scrambler",
"version": "1.1.1",
"author": "Christian Naths",
"license": "UNLICENSED",
"private": true,
"scripts": {
"start": "next dev",
"build": "next build && next export",
"serve": "next start",
"lint": "next lint",
"deploy": "firebase deploy --only hosting"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.8",
"@chakra-ui/react": "^2.2.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"framer-motion": "^6",
"lodash": "^4.17.21",
"nanoid": "^4.0.0",
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-stopwatch": "^2.0.4"
},
"devDependencies": {
"@prettier/plugin-xml": "^0.13.1",
"eslint": "^8.22.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"firebase-tools": "^9.10.2",
"prettier": "^2.3.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}