-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
71 lines (71 loc) · 2.13 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
{
"name": "nodebb-plugin-emoji",
"version": "5.1.15",
"description": "Adds extensible emoji functionality to NodeBB",
"main": "build/lib",
"author": "Peter Jaszkowiak <[email protected]> (https://github.com/pitaj)",
"license": "MIT",
"homepage": "https://github.com/NodeBB/nodebb-plugin-emoji",
"repository": {
"type": "git",
"url": "https://github.com/NodeBB/nodebb-plugin-emoji.git"
},
"nbbpm": {
"compatibility": "^3.0.0"
},
"keywords": [
"nodebb",
"plugin",
"emoji",
"extended"
],
"dependencies": {
"@textcomplete/core": "^0.1.12",
"@textcomplete/textarea": "^0.1.12",
"fs-extra": "^11.1.1",
"lodash": "^4.17.21",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@rollup/plugin-virtual": "^3.0.1",
"@tsconfig/svelte": "^5.0.0",
"@types/bootstrap": "^5.2.6",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/jquery": "^3.5.16",
"@types/lodash": "^4.14.195",
"@types/multer": "^1.4.7",
"@types/nconf": "^0.10.3",
"@types/node": "^20.3.3",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-svelte": "^2.32.2",
"rollup": "^3.26.0",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.6",
"semver": "^7.5.3",
"svelte": "^4.0.4",
"svelte-check": "^3.4.4",
"svelte-eslint-parser": "^0.32.0",
"svelte-preprocess": "^5.0.4",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
},
"scripts": {
"lint": "eslint . && svelte-check",
"compile": "tsc -p . && tsc -p public",
"dev": "npm run compile && cd acp && rollup -c -w",
"build": "npm run compile && cd acp && rollup -c",
"pretest": "npm run lint && npm run build",
"test": "node build/lib/tests.js",
"prepare": "bash prepare.sh"
}
}