-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.59 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": "strata-wiki",
"version": "1.0.0",
"description": "Hi! This is our wiki software. It uses Markdown files in order to compile static HTML files which can be deployed to the web.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-ts": "tsc",
"build": "node build/exporter/index.js",
"package": "webpack --config webpack.config.js --mode=production",
"package-dev": "webpack --config webpack.config.js --mode=development",
"dev": "npm run build-ts && npm run build && npm run package-dev && wrangler pages dev public",
"start": "npm run dev",
"format:fix": "prettier --write {assets,src}/**/*.{ts,js,scss,css}",
"format:check": "prettier --check {assets,src}/**/*.{ts,js,scss,css}",
"lint:fix": "eslint \"{assets,src}/**/*.{ts,js}\" --fix",
"lint:check": "eslint \"{assets,src}/**/*.{ts,js}\"",
"prepare": "husky install"
},
"lint-staged": {
"{assets,src}/**/*.{ts,js,css,scss}": [
"prettier --write"
],
"src/**/*.{ts,js}": [
"eslint --quiet --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/StrataSource/strata-wiki.git"
},
"author": "Strata Source",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/StrataSource/strata-wiki/issues"
},
"homepage": "https://github.com/StrataSource/strata-wiki#readme",
"dependencies": {
"fs-extra": "^11.1.0",
"highlight.js": "^11.7.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"markdown-it-container": "^3.0.0",
"markdown-it-emoji": "^2.0.2",
"markdown-it-front-matter": "^0.2.3",
"ts-loader": "^9.5.1",
"twemoji": "^14.0.2",
"typescript": "^4.9.5",
"webpack": "^5.89.0",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-emoji": "^2.0.2",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^45.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"webpack-cli": "^5.1.4",
"wrangler": "^2.9.1"
}
}