forked from slaurent22/hk-split-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.08 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "hk-split-maker",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"gen-files": "node tools/hollowknight-gen-files.js",
"build-prod": "del-cli dist/** && webpack --mode production",
"serve": "webpack serve --mode development",
"eslint": "eslint --max-warnings 0 .",
"eslintfix": "eslint --fix .",
"stylelint": "stylelint **/*.css",
"stylelintfix": "stylelint --fix **/*.css",
"lint": "npm run eslint && npm run stylelint",
"lintfix": "npm run eslintfix && npm run stylelintfix",
"prettier-check": "npx prettier --check .",
"prettier-write": "npx prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "husky install"
},
"author": "",
"license": "ISC",
"engines": {
"node": ">=18.x"
},
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/preset-env": "^7.16.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/file-saver": "^2.0.2",
"@types/node": "^15.6.0",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"@types/react-tabs": "^2.3.4",
"@types/sortablejs": "^1.10.7",
"@types/xml": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"babel-loader": "^8.2.3",
"core-js": "^3.20.3",
"css-loader": "^5.2.6",
"del-cli": "^4.0.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-react": "^7.24.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"monaco-editor-webpack-plugin": "^3.1.0",
"prettier": "2.6.2",
"style-loader": "^2.0.0",
"stylelint": "^14.0.0",
"stylelint-config-standard": "^23.0.0",
"ts-loader": "^9.2.2",
"typescript": "5.1",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.3.0"
},
"dependencies": {
"@atlaskit/tooltip": "^17.5.0",
"@monaco-editor/react": "^4.1.3",
"classnames": "^2.3.2",
"commander": "^7.2.0",
"file-saver": "^2.0.5",
"json5": "^2.2.0",
"monaco-editor": "^0.24.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-select": "^5.0.0",
"react-sortablejs": "^6.1.1",
"react-tabs": "^3.2.3",
"sortablejs": "^1.14.0",
"use-query-string": "^2.4.1",
"xml": "^1.0.1",
"xml-formatter": "^2.4.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
],
"*.css": [
"stylelint --fix",
"prettier --write"
],
"*.{md,json}": "prettier --write"
}
}