-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.87 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "gitit-back",
"version": "0.0.1",
"main": "index.js",
"author": "Jose Diaz-Gonzalez <jose.diazg@protonmail.com>",
"license": "MIT",
"scripts": {
"start": "PORT=3000 ts-node api/app.ts",
"start-dev": "NODE_ENV=development PORT=3000 nodemon api/app.ts",
"start-prod": "yarn build && node dist/app.js",
"docker-start": "docker-compose up -d",
"docker-dev": "docker-compose -f docker-compose.dev.yml up --build",
"build": "tsc -b",
"lint": "eslint --ext=jsx,js,tsx,ts api",
"clean": "eslint --ext=jsx,js,tsx,ts --fix api",
"prettier": "prettier --config ./.prettierrc --write api",
"test": "jest '(\\/test\\/(?!e2e/)).*'"
},
"dependencies": {
"@octokit/auth-token": "^2.4.1",
"@octokit/rest": "^17.9.3",
"@octokit/types": "^4.1.5",
"@types/express": "^4.17.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.5.23",
"@types/mongoose": "^5.7.27",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.6",
"@types/node-fetch": "^2.5.7",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.5.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.9",
"mongoose": "^5.9.19",
"morgan": "^1.10.0",
"node-fetch": "^2.6.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"ext": "ts"
}
}