-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
23 lines (23 loc) · 997 Bytes
/
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
{
"name": "marvel-ai",
"version": "1.0.0",
"description": "This is an AI teaching assistant project that combines a front-end and back-end application. The front-end is located in the `platform-frontend` directory, and the back-end is located in the `platform-backend` directory.",
"main": "index.js",
"keywords": [],
"author": "Radical",
"license": "ISC",
"scripts": {
"build:next": "cd frontend && npm run build && npm run export",
"serve:frontend": "firebase serve --only hosting",
"deploy": "npm run build:next && firebase deploy",
"serve": "npm run build:next && firebase serve",
"emulators": "firebase emulators:start",
"backend:docs": "cd functions && npm run docs",
"frontend:dev": "cd frontend && npm run dev",
"lint": "cd frontend && npm run lint && cd ../functions && npm run lint",
"lint:fix": "cd frontend && npm run lint:fix && cd ../functions && npm run lint:fix"
},
"devDependencies": {
"firebase-tools": "^9.10.0"
}
}