forked from stamp-team/chat-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.05 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
{
"name": "functions",
"version": "1.0.1",
"description": "Open Source Chat",
"engines": {
"node": "10"
},
"main": "dist/index.js",
"scripts": {
"dev": "NODE_ENV=development next src/app",
"clean": "rimraf dist",
"build:app": "npm run clean && NODE_ENV=development next build src/app",
"build:app:prod": "npm run clean && NODE_ENV=production next build src/app",
"start:app": "next start src/app",
"lint": "tslint --project src/functions/tsconfig.json",
"build": "tsc --project src/functions",
"serve": "npm run build && firebase emulators:start --only functions,hosting,ui",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"deploy:hosting": "firebase deploy --only functions:hosting",
"logs": "firebase functions:log"
},
"dependencies": {
"@1amageek/ballcap": "^1.2.4",
"@1amageek/ballcap-admin": "^1.2.4",
"@material-ui/core": "latest",
"@material-ui/icons": "latest",
"@material-ui/styles": "latest",
"body-parser": "^1.19.0",
"dayjs": "^1.8.25",
"express": "^4.17.1",
"firebase": "latest",
"firebase-admin": "latest",
"firebase-functions": "latest",
"next": "latest",
"prop-types": "latest",
"react": "latest",
"react-dom": "latest",
"react-dropzone": "latest",
"react-firebaseui": "latest",
"react-router-dom": "latest",
"styled-components": "latest"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.3",
"@types/node": "^13.9.1",
"@types/node-fetch": "^2.5.5",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/react-router-dom": "latest",
"@zeit/next-workers": "^1.0.0",
"babel-plugin-styled-components": "latest",
"cpx": "^1.5.0",
"cross-env": "^6.0.3",
"dotenv-webpack": "^1.7.0",
"file-loader": "^5.0.2",
"firebase-tools": "^7.15.1",
"googleapis": "^48.0.0",
"rimraf": "^3.0.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-react": "^4.1.0",
"typescript": "^3.9.3"
}
}