-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.27 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
{
"name": "streamer-server",
"repository": {
"url": "https://bitbucket.org/chthonicsoftwareteam/serverrepo"
},
"version": "2.0.0",
"description": "Back end server",
"license": "UNLICENSED",
"engines": {
"node": "8.9.4"
},
"scripts": {
"dev": "set NODE_ENV=development&&ts-node ./src/server.ts",
"build": "tsc && tsc && copyfiles src/**/*.html package.json package-lock.json src/.env.* dist",
"start": "node ./src/index.js",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'src/utils/engine/tests/**/*.ts'"
},
"dependencies": {
"@d-fischer/passport-twitch": "^1.0.5",
"@types/jest": "^26.0.15",
"ali-oss": "^6.10.0",
"axios": "^0.18.1",
"bcryptjs": "^2.4.3",
"connect-history-api-fallback": "^1.6.0",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^3.23.3",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"nodemailer": "^6.4.11",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"passport-local": "^1.0.0",
"passport-oauth2-refresh": "^1.1.0",
"sqlite": "^3.0.6",
"sqlite3": "^5.0.0",
"stripe": "^8.96.0",
"ts-loader": "^5.4.5",
"ts-node": "^8.10.2",
"typeorm": "^0.2.29",
"typescript": "^3.9.7",
"utf-8-validate": "^5.0.2",
"ws": "^7.3.1"
},
"devDependencies": {
"@types/ali-oss": "^6.0.5",
"@types/axios": "^0.14.0",
"@types/bcryptjs": "^2.4.2",
"@types/connect-history-api-fallback": "^1.3.3",
"@types/cookie-session": "^2.0.41",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/express-serve-static-core": "^4.17.12",
"@types/helmet": "0.0.43",
"@types/multer": "^1.4.4",
"@types/node": "^13.13.19",
"@types/nodemailer": "^4.6.8",
"@types/passport": "^1.0.4",
"@types/passport-google-oauth": "^1.0.41",
"@types/passport-local": "^1.0.33",
"@types/stripe": "^7.13.24",
"@types/ws": "^6.0.4",
"chai": "^4.2.0",
"copyfiles": "^2.3.0",
"mocha": "^8.2.1"
}
}