-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "co-studo-back",
"version": "1.0.0",
"description": "co-studo backend",
"main": "index.js",
"scripts": {
"start": "node build/src/init.js",
"start:dev": "nodemon --watch \"src/**/*.ts\" --exec \"ts-node\" -r tsconfig-paths/register src/init.ts",
"build": "tsc && tsc-alias",
"docker": "docker build . -t costudo-back"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Co-Studo/Co-Studo-back.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Co-Studo/Co-Studo-back/issues"
},
"homepage": "https://github.com/Co-Studo/Co-Studo-back#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.6.1",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"nodemon": "^2.0.19",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"firebase-admin": "^11.0.1"
}
}