-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.31 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.31 KB
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
{
"name": "onad-chat-collector",
"version": "1.0.0",
"description": "chat bot client for twitch-onad",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "ts-node index.ts",
"start:debug": "nodemon --watch *.ts --exec ts-node index.ts",
"start:debug:mac": "nodemon --watch ./ --exec ts-node index.ts",
"start:production": "set NODE_ENV=production && node ./dist/bundle.js",
"prebuild": "rimraf dist",
"build": "webpack --config webpack.config.js",
"test": "jest --coverage --detectOpenHandles --forceExit --watchAll=false",
"lint": "eslint ."
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mysql": "^2.17.1",
"node-schedule": "^1.3.2",
"sequelize": "^5.21.5",
"socket.io-client": "^2.3.0",
"tmi.js": "^1.5.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"@types/mysql": "^2.15.9",
"@types/node": "^13.9.3",
"@types/node-schedule": "^1.3.0",
"@types/nodemon": "^1.19.0",
"@types/sequelize": "^4.28.8",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@types/tmi.js": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"socket.io": "^2.3.0",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"prettier": {
"singleQuote": true,
"semi": true,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 80
},
"jest": {
"rootDir": "./",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": [
"\\.spec\\.ts$",
"\\.test\\.ts$",
"\\.spec\\.js$",
"\\.test\\.js$"
],
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
}
}