-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
104 lines (104 loc) · 3.83 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "functions",
"version": "1.0.1",
"description": "Host Next.js SSR app on Firebase Cloud Functions with Firebase Hosting redirects. Built with typescript.",
"engines": {
"node": "10"
},
"main": "dist/index.js",
"scripts": {
"play": "ts-node --project ./playground/tsconfig.json playground",
"dev": "NODE_ENV=development next src/app",
"dev:emulator": "NODE_ENV=development USE_EMULATOR=true 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",
"stripe:listen": "stripe listen --forward-to 127.0.0.1:5000/_/webhook/stripe",
"serve": "npm run build && firebase emulators:start --only firestore,functions,hosting,ui",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"config": "firebase functions:config:get > .runtimeconfig.json",
"deploy": "firebase deploy --only functions",
"deploy:hosting": "firebase deploy --only functions:hosting",
"deploy:account": "firebase deploy --only functions:account.v1",
"deploy:commerce": "firebase deploy --only functions:commerce.v1",
"deploy:commerce.order": "firebase deploy --only functions:commerce.v1.order",
"deploy:commerce.product": "firebase deploy --only functions:commerce.v1.product",
"deploy:commerce.inventory": "firebase deploy --only functions:commerce.v1.inventory",
"deploy:commerce.provider": "firebase deploy --only functions:commerce.v1.provider",
"deploy:stripe": "firebase deploy --only functions:stripe.v1",
"deploy:stripe.paymentMethod": "firebase deploy --only functions:stripe.v1.paymentMethod",
"logs": "firebase functions:log",
"copy-common": "cpx ./src/functions/common/ ./src/app/common -C"
},
"dependencies": {
"@1amageek/ballcap": "^1.2.6",
"@1amageek/ballcap-admin": "^1.2.6",
"@1amageek/open-graph-protocol": "^0.3.0",
"@material-ui/core": "latest",
"@material-ui/icons": "latest",
"@material-ui/styles": "latest",
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "^1.7.0",
"body-parser": "^1.19.0",
"browser-image-compression": "^1.0.12",
"dayjs": "^1.8.25",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "latest",
"firebase-admin": "latest",
"firebase-functions": "latest",
"mkdirp": "^1.0.4",
"next": "latest",
"paymentfont": "^1.2.5",
"prop-types": "latest",
"react": "latest",
"react-dom": "latest",
"react-dropzone": "latest",
"react-firebaseui": "latest",
"react-markdown": "^4.3.1",
"react-mde": "^10.1.0",
"react-router-dom": "latest",
"recharts": "^1.8.5",
"sharp": "^0.25.4",
"showdown": "^1.9.1",
"stripe": "latest",
"styled-components": "latest",
"uuidv4": "^6.2.0"
},
"devDependencies": {
"@firebase/rules-unit-testing": "latest",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.3",
"@types/jest": "^26.0.12",
"@types/mkdirp": "^1.0.1",
"@types/node": "latest",
"@types/node-fetch": "^2.5.5",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/react-router-dom": "latest",
"@types/sharp": "^0.25.0",
"@types/showdown": "^1.9.3",
"@types/stripe": "latest",
"@types/webpack": "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-functions-test": "latest",
"firebase-tools": "^8.6.0",
"googleapis": "^48.0.0",
"jest": "^26.4.2",
"rimraf": "^3.0.0",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.3",
"tslint": "latest",
"tslint-react": "latest",
"typescript": "latest"
}
}