-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
91 lines (91 loc) · 2.23 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
{
"name": "dgg-chat-gui",
"version": "2.48.2",
"description": "Destiny.gg chat client front-end",
"main": "destiny",
"scripts": {
"tld": "node scripts/tld.js",
"glue": "node scripts/glue.js",
"start": "webpack serve --mode=development",
"test": "jest",
"prepare": "cp .githooks/* .git/hooks/",
"lint": "eslint --fix --max-warnings=0 . && prettier -cwu ."
},
"repository": {
"type": "git",
"url": "git://github.com/destinygg/chat-gui.git"
},
"browserslist": [
"> 0.25%",
"not dead"
],
"keywords": [
"destiny.gg",
"destinygg",
"dgg"
],
"author": "Destiny.gg Foundation",
"contributors": [],
"homepage": "http://www.destiny.gg/",
"license": "SEE LICENSE IN <LICENSE.md>",
"bugs": "https://github.com/destinygg/website/issues",
"directories": {
"assets": "./assets"
},
"dependencies": {
"dotenv": "^16.0.3",
"jquery": "^3.6.0",
"moment": "~2.30.1",
"normalize.css": "~8.0.1",
"overlayscrollbars": "^2.0.3",
"sass-loader": "^16.0.2",
"throttle-debounce": "~5.0.0",
"tippy.js": "^6.3.7",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.14.2",
"autoprefixer": "^10.2.5",
"babel-loader": "^9.1.2",
"css-loader": "^7.1.1",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^28.5.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.2",
"lint-staged": "^15.2.0",
"postcss-loader": "^8.1.1",
"prettier": "^3.0.3",
"sass": "^1.34.0",
"spritesmith": "~3.5.1",
"style-loader": "^4.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^5.0.4"
},
"engines": {
"node": ">=14.21.3",
"npm": ">=6.14.18"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"utf-8-validate": "^6.0.3"
},
"jest": {
"testEnvironment": "jsdom"
},
"lint-staged": {
"*.js": [
"eslint --fix --max-warnings=0 ."
],
"*": [
"prettier -cwu --loglevel silent ."
]
}
}