-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.5 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "kana",
"version": "0.1.1",
"type": "commonjs",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix": "next lint --fix .",
"format": "npx prettier --check .",
"format-fix": "npx prettier --write .",
"enc": "senv encrypt .env.development.local -o .env.development.local.encrypted && senv encrypt .env.production.local -o .env.production.local.encrypted",
"dec": "senv decrypt .env.development.local.encrypted -o .env.development.local && senv decrypt .env.production.local.encrypted -o .env.production.local",
"storybook": "echo Open storybook in http://localhost:6006/ && start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@algolia/autocomplete-core": "^1.17.4",
"@algolia/autocomplete-js": "^1.17.4",
"@algolia/autocomplete-plugin-query-suggestions": "1.17.4",
"@algolia/autocomplete-plugin-recent-searches": "^1.17.4",
"@algolia/autocomplete-theme-classic": "1.17.4",
"@mdx-js/loader": "^3.0.1",
"@next/mdx": "12.3.1",
"@tanstack/react-query": "^5.17.19",
"algoliasearch": "^4.24.0",
"axios": "^1.6.5",
"downloadjs": "^1.4.7",
"firebase": "^10.11.1",
"flowbite": "^2.3.0",
"flowbite-react": "0.7.5",
"mixpanel-browser": "^2.50.0",
"next": "12.3.1",
"nextjs-cors": "^2.1.1",
"pi": "^2.0.4",
"prop-types": "^15.8.1",
"qs": "^6.12.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-firebase-hooks": "^5.1.1",
"react-icons": "^5.0.1",
"react-instantsearch": "^7.12.2",
"react-router-dom": "^6.23.0",
"react-toastify": "^9.1.3"
},
"devDependencies": {
"@babel/core": "7.19.3",
"@mdx-js/react": "2.1.4",
"@types/async-busboy": "^1.1.1",
"@types/downloadjs": "^1.4.6",
"@types/mixpanel-browser": "^2.49.0",
"@types/node": "18.8.3",
"@types/qs": "^6.9.15",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/react-instantsearch": "^6.10.4",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"autoprefixer": "10.4.12",
"eslint": "8.56.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.6.4",
"orval": "^6.23.0",
"postcss": "8.4.17",
"prettier": "3.2.5",
"require-from-string": "^2.0.2",
"senv": "^1.0.2",
"tailwindcss": "^3.1.8",
"typescript": "4.8.4",
"webpack": "^5.74.0"
}
}