-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 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
65
66
67
68
69
70
71
72
{
"name": "firebase-express-dashboard",
"version": "0.5.2",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/**/*",
"!dist/src/demo*"
],
"scripts": {
"task:clean": "rimraf ./dist",
"task:typescript": "tsc -sourcemap",
"task:static": "shx cp -R ./src/public ./dist/src",
"task:eslint": "eslint --ignore-path .gitignore . --fix",
"task:jest": "FORCE_COLOR=true jest --forceExit",
"task:codecov": "dotenv codecov -f coverage/*.json",
"test": "npm-run-all task:clean task:jest task:codecov",
"release": "np",
"prepare": "npm run build && husky install",
"prestart": "npm run build",
"build": "npm-run-all task:clean task:typescript task:static task:eslint",
"start": "node -r source-map-support/register dist/src/demo.js",
"update_browsersList": "npx browserslist@latest --update-db"
},
"bugs": {
"url": "https://github.com/Asaf-S/firebase-express-dashboard/issues"
},
"keywords": [
"firebase",
"auth",
"authentication"
],
"homepage": "https://github.com/Asaf-S/firebase-express-dashboard#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Asaf-S/firebase-express-dashboard.git"
},
"author": "Asaf S.",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.23",
"@types/json-stringify-safe": "^5.0.0",
"@types/superagent": "^4.1.10",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"codecov": "^3.8.3",
"dotenv": "^9.0.2",
"dotenv-cli": "^4.1.0",
"eslint": "^8.23.0",
"husky": "^6.0.0",
"jest": "26.6.0",
"lint-staged": "^10.5.4",
"np": "*",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1"
},
"dependencies": {
"@types/node": "^15.0.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"firebase-admin": "^9.5.0",
"json-stringify-safe": "^5.0.1",
"superagent": "^6.1.0",
"typescript": "^4.6.2"
}
}