-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "atmos",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "yarn format && yarn check-format && yarn check-lint && yarn check-types"
},
"dependencies": {
"@chakra-ui/react": "^2.5.5",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.17",
"@material-tailwind/react": "^1.4.2",
"@types/js-cookie": "^3.0.3",
"@types/node": "18.15.3",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"autoprefixer": "^9.8.8",
"axios": "^1.3.6",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"http-proxy-middleware": "^2.0.6",
"js-cookie": "^3.0.5",
"next": "13.2.4",
"postcss": "^7.0.39",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-icons": "^4.8.0",
"react-select": "^5.7.3",
"tailwindcss": "^3.3.1",
"typescript": "5.0.2"
},
"devDependencies": {
"@tsconfig/next": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-react": "^7.32.2",
"next-stride": "^2.6.4",
"prettier": "^2.8.5"
}
}