-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
85 lines (85 loc) · 2.08 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "gulp",
"prestart": "npm run build",
"start": "node .",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@paypal/checkout-server-sdk": "^1.0.3",
"async-mutex": "^0.5.0",
"body-parser": "^1.20.2",
"cftools-sdk": "^3.1.7",
"compression": "^1.7.4",
"connect-session-knex": "^4.0.0",
"csurf": "^1.11.0",
"discord.js": "^14.15.2",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"express-session": "^1.18.0",
"express-winston": "^4.2.0",
"js-yaml": "^4.1.0",
"materialize-css": "^1.0.0",
"node-fetch": "^2.7.0",
"passport": "^0.7.0",
"passport-discord": "^0.1.4",
"passport-steam": "^1.0.18",
"reflect-metadata": "^0.2.2",
"sqlite3": "^5.1.7",
"stripe": "^17.5.0",
"tsyringe": "^4.8.0",
"uuid": "^9.0.1",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/csurf": "^1.11.5",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.12.12",
"@types/node-fetch": "^2.6.11",
"@types/passport": "^1.0.16",
"@types/passport-discord": "^0.1.13",
"@types/passport-steam": "^1.0.5",
"@types/uuid": "^9.0.8",
"del": "^7.1.0",
"gulp": "^5.0.0",
"gulp-sass": "^5.1.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"jest": "^29.7.0",
"sass": "^1.77.2",
"through2": "^4.0.2",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"jest": {
"testMatch": [
"<rootDir>/src/**/*.spec.ts"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/src/setupJest.ts"
],
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"test-data.spec.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}