-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "posterior",
"version": "1.0.0",
"description": "Backend for the Alcoding Web portal",
"main": "app.js",
"scripts": {
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/app.js",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prettier-watch": "onchange 'src/**/*.ts' -- prettier --write {{changed}}"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier-format && npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/pes-alcoding-club/posterior.git"
},
"keywords": [
"alcoding",
"backend"
],
"author": "pes-alcoding-club",
"license": "ISC",
"bugs": {
"url": "https://github.com/pes-alcoding-club/posterior/issues"
},
"homepage": "https://github.com/pes-alcoding-club/posterior#readme",
"dependencies": {
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.22",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/mongoose": "^5.7.31",
"@types/node": "^14.0.22",
"@types/passport": "^1.0.4",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/passport-local-mongoose": "^4.0.13",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"husky": "^4.2.5",
"nodemon": "^2.0.4",
"onchange": "^7.0.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
}
}