This repository has been archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "freee-firebase-sdk",
"version": "2.2.1",
"license": "MIT",
"homepage": "https://github.com/freee/firebase-sdk-js",
"repository": {
"type": "git",
"url": "https://github.com/freee/firebase-sdk-js.git"
},
"scripts": {
"lint": "eslint --fix -c .eslintrc.js --ext .tsx --ext .ts src",
"build": "webpack --mode production",
"watch": "webpack --watch --mode development",
"serve": "firebase serve --only functions -o 0.0.0.0",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log",
"test": "jest",
"fmt": "prettier --write 'src/**/*.{tsx,ts}'"
},
"main": "lib/index.js",
"types": "lib/index.d.js",
"dependencies": {
"@google-cloud/storage": "^6.3.0",
"axios": "^0.24.0",
"body-parser": "^1.18.3",
"crypto": "^1.0.1",
"date-fns": "^2.11.0",
"express": "^4.16.4",
"firebase-admin": "^11.0.1",
"firebase-functions": "^3.22.0",
"form-data": "^3.0.0",
"simple-oauth2": "^2.2.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.16.1",
"@types/jest": "24.9.1",
"@types/simple-oauth2": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.29.4",
"jest": "24.9.0",
"prettier": "1.17.0",
"ts-jest": "24.3.0",
"ts-loader": "^9.3.0",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "3.0.0"
},
"engines": {
"node": "16",
"npm": "8"
}
}