-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.3 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
74
75
76
77
{
"name": "expressjs-typescript-example-tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon api/index.ts",
"build": "rimraf dist && tsc",
"ts.check": "tsc --project tsconfig.json && tsc --project tsconfig.test.json ; rm -f -r dist",
"test": "jest",
"test:e2e": "jest --runInBand --testPathPattern=src/__tests__/ --testPathIgnorePatterns='src/__tests__/__mocks__/|src/__tests__/__helpers__/' --detectOpenHandles",
"start:dev": "nodemon api/index.ts",
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts,.tsx}\" -w",
"lint": "prettier */*.js \"*/**/*{.js,.ts,.tsx}\" --check",
"db-migrate": "ts-node -T scripts/migrate.ts",
"db-drop": "ts-node -T scripts/drop.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"pre-commit": [
"ts.check"
],
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-ensure-login": "^0.1.1",
"connect-pg-simple": "9.0.1",
"connection-string": "4.4.0",
"cors": "^2.8.5",
"decimal.js": "^10.4.3",
"deep-equal": "2.2.3",
"dotenv": "16.4.5",
"embedded-postgres": "^16.4.0-beta.12",
"express": "5.0.0",
"express-rate-limit": "^7.4.1",
"express-session": "1.18.0",
"express-validator": "7.2.0",
"helmet": "^8.0.0",
"http-status-codes": "^2.3.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"passport": "0.7.0",
"passport-github": "^1.1.0",
"passport-local": "1.0.0",
"postmark": "^4.0.5",
"pre-commit": "^1.2.2",
"rimraf": "^5.0.10",
"stripe": "^16.10.0",
"uuid": "^10.0.0",
"winston": "^3.15.0"
},
"devDependencies": {
"@types/connect-ensure-login": "^0.1.9",
"@types/connect-pg-simple": "7.0.3",
"@types/deep-equal": "1.0.4",
"@types/express": "^4.17.21",
"@types/express-session": "1.18.0",
"@types/jest": "29.5.12",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/passport": "1.0.16",
"@types/passport-github": "^1.1.12",
"@types/passport-local": "1.0.38",
"@types/pg": "8.11.8",
"@types/supertest": "6.0.2",
"@types/uuid": "^10.0.0",
"embedded-postgres": "^16.4.0-beta.12",
"jest": "^29.7.0",
"node-flywaydb": "3.0.7",
"nodemon": "3.1.4",
"supertest": "6.3.4",
"ts-jest": "29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.5.4"
}
}