-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 963 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "gmail-api-node",
"version": "1.0.0",
"description": "Simple api for manage gmail.",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev src/index.ts",
"tsc": "tsc",
"start": "node build/index.js",
"lint": "ts-standard",
"format": "rome format .",
"format:fix": "rome format . --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"gmail",
"api",
"node",
"typescript"
],
"author": "Freilyn Bernabe",
"license": "ISC",
"dependencies": {
"@types/firebase": "^3.2.1",
"express": "^4.18.2",
"firebase": "^10.6.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"rome": "^12.1.3",
"ts-node-dev": "^2.0.0",
"ts-standard": "^12.0.2",
"typescript": "^5.2.2"
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"./node_modules/ts-standard/eslintrc.json"
]
}
}