-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.36 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.36 KB
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
{
"name": "teller-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"repository": "git@github.com:GuiMoraesDev/teller-api.git",
"author": "Guilherme Moraes <guimoraes.dev@gmail.com>",
"scripts": {
"dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules src/server.ts",
"build": "tsc --outDir ./build",
"start": "node ./build/server.js",
"prepare": "husky install"
},
"dependencies": {
"@supabase/supabase-js": "^1.35.6",
"bcryptjs": "^2.4.3",
"celebrate": "^15.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2"
},
"devDependencies": {
"@commitlint/cli": "^17.1.1",
"@commitlint/config-conventional": "^17.1.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"git-branch-is": "^4.0.0",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0",
"typescript": "*"
}
}