-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.37 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.37 KB
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
{
"name": "apotech",
"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": "npm run format && npm run check-format && npm run check-lint && npm run check-types"
},
"dependencies": {
"@bradgarropy/next-google-analytics": "^1.0.2",
"@heroicons/react": "^2.0.17",
"@types/node": "18.16.0",
"@types/react": "18.0.38",
"@types/react-dom": "18.0.11",
"axios": "^1.3.6",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"flowbite": "^1.6.5",
"flowbite-react": "^0.4.3",
"next": "13.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-secure-storage": "^1.2.1",
"react-toastify": "^9.1.2",
"typescript": "5.0.4"
},
"devDependencies": {
"@tsconfig/next": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"autoprefixer": "^10.4.14",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"next-stride": "^2.6.3",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.1"
}
}