-
Notifications
You must be signed in to change notification settings - Fork 275
/
Copy pathpackage.json
64 lines (64 loc) · 2.08 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
{
"name": "marvel-ai",
"version": "0.1.0",
"private": true,
"scripts": {
"install:all": "npm i && cd functions && npm i && cd ..",
"dev": "next dev",
"dev:all": "concurrently --kill-others-on-fail \"npm run emulators\" \"npm run dev\"",
"start": "next start",
"export": "next export",
"build": "npm i && next build",
"emulators": "firebase emulators:start --project kai-platform-sandbox",
"lint": "eslint --cache --ext .jsx --ext .js .",
"lint:fix": "eslint --ext .jsx --ext .js ./ --fix",
"deploy": "npm run build && npm run export && firebase deploy",
"deploy:frontend": "npm run build && npm run export && firebase deploy --only hosting",
"kill-emulators": "lsof -t -i:8080 -i:9000 | xargs kill -9"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.16.5",
"@mui/material": "^5.13.0",
"@mui/x-date-pickers": "^6.5.0",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.4.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"firebase": "^9.22.0",
"firebase-admin": "^11.8.0",
"moment": "^2.29.4",
"next": "12.3.0",
"next-transpile-modules": "^10.0.1",
"nextjs-google-analytics": "^2.3.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-hook-form-mui": "^6.1.0",
"react-markdown": "^9.0.0",
"react-redux": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"remark": "^15.0.1",
"remark-emoji": "^4.0.1",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"unified": "^11.0.2"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"concurrently": "^9.1.0",
"eslint": "8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^9.0.11",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8"
}
}