-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 2.79 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@pmndrs/discord",
"version": "0.0.1",
"private": true,
"main": "build/app.js",
"description": "Discord bot to support the Poimandres server",
"keywords": [
"poimandres",
"discord",
"bot"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/discord.git"
},
"bugs": {
"url": "https://github.com/pmndrs/discord/issues"
},
"license": "MIT",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(^.*)/__tests__/(.+(ts|)$)",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.+(ts)",
"!<rootDir>/**/*.d.ts",
"!<rootDir>/node_modules",
"!<rootDir>/**/__tests__/**"
],
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"automock": false,
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"scripts": {
"start": "node .webpack/app.js",
"start:dev": "cross-env NODE_ENV=development webpack-cli -w --config webpack.config.js --display errors-only",
"start:prodlike": "cross-env NODE_ENV=development PRODLIKE=true webpack-cli -w --config webpack.config.js --display errors-only",
"build": "cross-env NODE_ENV=production webpack-cli --config webpack.config.js",
"test": "jest",
"eslint": "eslint --fix src/**/*.{js,ts}",
"deploy": "git push heroku master"
},
"dependencies": {
"chalk": "^3.0.0",
"discord.js": "^12.0.2",
"ioredis": "4.19.4",
"node-fetch": "^2.6.1",
"lodash": "^4.17.19",
"uuid": "^3.2.1"
},
"devDependencies": {
"@babel/core": "7.10.5",
"@babel/preset-env": "7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/dotenv": "^4.0.3",
"@types/ioredis": "^4.19.3",
"@types/jest": "^22.2.3",
"@types/lodash": "^4.14.109",
"@types/node": "^10.0.7",
"@types/uuid": "^3.4.3",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.6.5",
"cross-env": "5.1.6",
"dotenv": "^5.0.1",
"dotenv-webpack": "^1.5.5",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"ini": ">=1.3.6",
"jest": "^24.9.0",
"lint-staged": "^10.2.11",
"nodemon-webpack-plugin": "^4.3.2",
"node-notifier": ">=8.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.3.0",
"ts-loader": "^4.3.0",
"ts-node": "^6.0.3",
"typescript": "^4.0.3",
"webpack": "^4.41.2",
"webpack-cli": "3.3.10"
}
}