-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.84 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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "nodefuel",
"version": "1.0.0",
"description": "A TypeScript-First Boilerplate with Multi-Auth for Building High-Quality Node.js Applications",
"main": "src/index.ts",
"scripts": {
"dev": "npx nodemon",
"build": "rimraf ./build && tsc",
"start": "cross-env NODE_ENV=production npm run build && pm2 start build/index.js",
"lint": "eslint . --ext .ts",
"docs": "apidoc -i src -o docs",
"postdocs": "open-cli docs/index.html",
"validate": "npm run lint && npm run test",
"generate": "ts-node-esm ./src/generator.ts",
"test:unit": "vitest -c ./vitest.config.unit.ts",
"test:unit:ui": "vitest -c ./vitest.config.unit.ts --ui"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.16.2",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"dotenv-safe": "^8.2.0",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-session": "^1.17.3",
"express-validation": "^4.1.0",
"helmet": "^6.1.5",
"http-status": "^1.6.2",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"session-file-store": "^1.5.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/dotenv-safe": "^8.1.2",
"@types/ejs": "^3.1.2",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/fs-extra": "^11.0.1",
"@types/method-override": "^0.0.32",
"@types/mocha": "^10.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.11",
"@types/passport": "^1.0.12",
"@types/passport-facebook": "^2.1.11",
"@types/passport-github2": "^1.2.5",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-local": "^1.0.35",
"@types/passport-twitter": "^1.0.37",
"@types/session-file-store": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"@vitest/ui": "^0.30.1",
"apidoc": "^0.54.0",
"commander": "^10.0.1",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"nodemon": "^2.0.22",
"open-cli": "^7.2.0",
"prisma": "^4.16.2",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vitest": "^0.30.1",
"vitest-mock-extended": "^1.1.3"
}
}