-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.06 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "projecthunt",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"seed": "ts-node scripts/db/seed.ts",
"watch": "tsc -w",
"clean": "rimraf ./dist",
"build": "npm run clean && tsc",
"start": "cross-env NODE_ENV=production npm run build && cross-env DEBUG=server* node dist/server.js",
"start:dev": "cross-env DEBUG=server* nodemon",
"lint": "eslint . --ext .ts"
},
"_moduleAliases": {
"@auth": "dist/modules/auth",
"@common": "dist/modules/common",
"@project": "dist/modules/project",
"@user": "dist/modules/user",
"@entities": "dist/entities",
"@config": "dist/config",
"@utils": "dist/utils"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.11",
"@types/helmet": "^4.0.0",
"@types/http-errors": "^1.8.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.28",
"@types/passport": "^1.0.6",
"@types/passport-github2": "^1.2.4",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"cross-env": "^7.0.3",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"dependencies": {
"app-root-path": "^3.0.0",
"argon2": "^0.27.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"debug": "^4.3.1",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"http-errors": "^1.8.0",
"http-status-codes": "^2.1.4",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"pg": "^8.5.1",
"prettier": "^2.2.1",
"superstruct": "^0.14.2",
"typeorm": "^0.2.31",
"winston": "^3.3.3"
}
}