-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.02 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
{
"name": "wikig",
"version": "1.0.0",
"description": "A blog-influenced wiki",
"main": "index.js",
"scripts": {
"lint": "eslint . src src/bin/* --ignore-pattern '**/*.min.js' -f codeframe --fix",
"format": "prettier --write src *.js",
"watch": "concurrently nodemon gulp",
"gulp": "gulp",
"start": "node ./src/bin/www",
"init-db": "node ./src/bin/init-db",
"test": "IN_MEMORY_DB=true jest",
"check": "tsc --noEmit",
"tsc": "tsc"
},
"keywords": [
"wiki",
"markdown"
],
"author": "Wilfred Hughes",
"repository": "https://github.com/Wilfred/wikig",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cache-manager": "^2.11.0",
"commonmark": "^0.31.2",
"commonmark-extract-text": "^0.1.0",
"commonmark-linkify": "^1.2.0",
"commonmark-twemoji": "^1.1.0",
"commonmark-wikiwords": "^3.1.0",
"compression": "^1.7.4",
"compromise": "^12.3.0",
"debug": "^4.1.1",
"emojilib": "^2.4.0",
"express": "^4.21.2",
"express-basic-auth": "^1.2.0",
"express-cache-middleware": "^1.0.1",
"express-handlebars": "^5.0.0",
"font-awesome": "^4.7.0",
"fuse.js": "^6.2.0",
"hammerjs": "^2.0.8",
"http-errors": "^1.7.3",
"lodash": "^4.17.20",
"moment": "^2.30.1",
"random-item": "^3.0.0",
"semantic-ui-css": "^2.4.1",
"sqlite3": "^5.1.7",
"string-similarity": "^4.0.1",
"truncate": "^2.1.0",
"twemoji": "^12.1.5"
},
"devDependencies": {
"@types/commonmark": "^0.27.9",
"@types/express": "^5.0.0",
"@types/lodash": "^4.17.15",
"@types/node": "^22.13.1",
"concurrently": "^5.2.0",
"eslint": "^8.57.0",
"eslint-formatter-codeframe": "^7.32.1",
"gulp": "^5.0.0",
"gulp-concat": "^2.6.1",
"gulp-concat-css": "^3.1.0",
"gulp-csso": "^4.0.1",
"gulp-purgecss": "^7.0.2",
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"jest": "^29.7.0",
"nodemon": "^2.0.4",
"prettier": "^3.4.2",
"supertest": "^4.0.2",
"typescript": "^5.7.3"
}
}