-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
{
"name": "functional-api",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:DiegoVictor/functional-api.git",
"author": "Diego Victor <diegovictorgonzaga@gmail.com>",
"license": "MIT",
"engines": {
"node": "18"
},
"scripts": {
"build": "babel --extensions .ts,.js src --out-dir dist --source-maps --copy-files",
"deploy": "firebase deploy --only functions",
"watch": "nodemon --watch src --ext js,ts --exec \"npm run build\"",
"serve": "cp package.json dist && firebase emulators:start --only functions",
"test": "jest --runInBand"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@faker-js/faker": "^8.0.2",
"@jest-mock/express": "^2.0.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"babel-plugin-root-import": "^6.6.0",
"eslint": "^8.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.7.0",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.17.3",
"firebase-admin": "^11.9.0",
"firebase-functions": "^4.4.1"
}
}