forked from ahuglajbclajep/md2steam-review-formatting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.71 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
{
"name": "md2steam-review-formatting",
"version": "1.0.0",
"description": "An experimental editor that converts Markdown to Steam review/wiki formatting.",
"private": true,
"scripts": {
"start": "webpack-dev-server --open",
"build": "rm -rf dist && NODE_ENV=production webpack -p",
"lint:format": "prettier -cu --ignore-path .gitignore .",
"lint:ts": "eslint 'src/**/*.[tj]s{,x}'",
"lint:css": "stylelint -f verbose 'src/**'",
"deploy": "npm run build && gh-pages -d dist"
},
"dependencies": {
"idb-keyval": "^3.2.0",
"morphdom": "^2.6.1",
"preact": "^10.5.3",
"prettier": "^2.1.2",
"rehype-stringify": "^8.0.0",
"remark-disable-tokenizers": "^1.0.24",
"remark-parse": "^8.0.3",
"remark-rehype": "^7.0.0",
"unified": "^9.2.0"
},
"devDependencies": {
"@types/prettier": "^2.1.1",
"@types/webpack": "^4.41.22",
"@types/webpack-dev-server": "^3.11.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"comlink-loader": "^2.0.0",
"css-loader": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^0.11.3",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.1.0",
"stylelint-config-standard": "^20.0.0",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^5.1.4"
}
}