-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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
{
"name": "uttori-wiki-theme-default",
"version": "1.1.1-pre",
"description": "Default theme for the Uttori Wiki",
"author": "Matthew Callis <[email protected]>",
"contributors": [],
"license": "GPL-3.0",
"repository": "uttori/uttori-wiki-theme-default",
"homepage": "https://github.com/uttori/uttori-wiki-theme-default",
"keywords": [],
"engines": {
"node": ">= 10"
},
"dependencies": {
"highlight.js": "^9.15.6",
"slugify": "^1.3.4"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.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",
"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": [
"public",
"src",
"templates"
],
"browser": "./",
"scripts": {
"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 public/styles/style.css",
"validate": "npm ls",
"watch-styles": "node-sass --watch src/styles/styles.scss public/styles/style.css"
}
}