-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.3 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
{
"name": "preservation-work-wiki",
"version": "1.0.0",
"description": "",
"author": "Matthew Callis <[email protected]>",
"contributors": [],
"license": "GPL-3.0",
"repository": "MatthewCallis/preservation.work",
"homepage": "https://github.com/MatthewCallis/preservation.work",
"keywords": [],
"engines": {
"node": ">= 10"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"dotenv": "^7.0.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-ejs-layouts": "^2.5.0",
"express-recaptcha": "^4.2.0",
"highlight.js": "^9.15.6",
"markdown-it": "^8.4.2",
"raven": "^2.6.4",
"request": "^2.88.0",
"serve-favicon": "^2.5.0",
"slugify": "^1.3.4",
"uttori-renderer-markdown-it": "^1.0.0",
"uttori-search-provider-lunr": "^1.1.0",
"uttori-storage-provider-json-file": "^2.1.2",
"uttori-upload-provider-multer": "^1.2.2",
"uttori-wiki": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-ava": "^6.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-no-inferred-method-name": "^1.0.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-optimize-regex": "^1.1.6",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-unicorn": "^8.0.1",
"eslint-plugin-xss": "^0.1.9",
"node-sass": "^4.11.0",
"nodemon": "^1.18.10",
"rollup": "^1.9.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-babel-minify": "^8.0.0",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^4.2.1"
},
"files": [],
"main": "./site/server.js",
"scripts": {
"debug": "DEBUG=Uttori* node ./site/server.js",
"start": "node ./site/server.js",
"lint": "eslint .",
"make": "npm run make-scripts && npm run make-styles",
"make-scripts": "node rollup.config.js",
"make-styles": "node-sass --output-style compressed src/styles/styles.scss site/themes/default/public/styles/style.css",
"validate": "npm ls",
"watch-styles": "node-sass --watch src/styles/styles.scss site/themes/default/public/styles/style.css"
}
}