-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
63 lines (63 loc) · 2.25 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
{
"name": "moderator-toolbox-for-reddit",
"description": "A set of tools to be used by moderators on reddit in order to make their jobs easier.",
"type": "module",
"private": true,
"scripts": {
"build": "del-cli build && rollup -c rollup.config.js",
"build:watch": "rollup -c rollup.config.js --watch",
"lint": "eslint . --config .eslintrc.json --ignore-path .eslintignore",
"lint:fix": "eslint . --config .eslintrc.json --ignore-path .eslintignore --fix",
"fmt": "dprint check",
"fmt:fix": "dprint fmt",
"docs": "jsdoc -c jsdoc.json",
"release": "node release.mjs"
},
"homepage": "http://www.reddit.com/r/toolbox",
"repository": {
"type": "git",
"url": "https://github.com/toolbox-team/reddit-moderator-toolbox.git"
},
"license": "Apache-2.0",
"dependencies": {
"@reduxjs/toolkit": "^2.3.0",
"codemirror": "^5.65.16",
"dompurify": "^3.2.0",
"framer-motion": "^11.11.7",
"iter-ops": "^3.5.0",
"jquery": "^3.7.1",
"pako": "^0.2.6",
"react": "^18.3.0",
"react-dom": "^18.3.1",
"react-redux": "^9.1.0",
"snuownd": "github:gamefreak/snuownd#533e8dcb67fe8e4ddc83fb8317ed0d10c25b6fcb",
"timeago": "^1.6.7",
"tinycolor2": "^1.6.0",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.1",
"@tsconfig/recommended": "^1.0.3",
"@types/jquery": "^3.5.29",
"@types/jquery.timeago": "^1.0.33",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/webextension-polyfill": "^0.12.1",
"cross-env": "^7.0.3",
"del-cli": "^6.0.0",
"docdash": "^2.0.2",
"dprint": "^0.47.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.1",
"inquirer": "^12.1.0",
"jsdoc": "^4.0.2",
"rollup": "^4.9.6",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.6.2"
}
}