-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "resfulapi_ax4b",
"version": "1.0.0",
"main": "src/index.ts",
"repository": "git@github.com:vickttor/school_enrollment_api.git",
"author": "Victor Silva <victor.silvaPC@hotmail.com>",
"license": "MIT",
"scripts": {
"dev": "tsnd --transpile-only --respawn --ignore-watch node_modules .",
"start": "node dist/index.js",
"build": "tsc --build",
"commit": "git-cz",
"test": "jest"
},
"dependencies": {
"@supabase/supabase-js": "^1.30.7",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}