-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.54 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
{
"name": "snakedex-viewer",
"version": "1.0.0",
"description": "A simple viewer for the Snakedex.",
"main": "./src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.js",
"lint": "eslint . --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Snakeroom/Snakedex-Viewer.git"
},
"keywords": [
"snakedex",
"viewer"
],
"author": "haykam821",
"license": "MIT",
"bugs": {
"url": "https://github.com/Snakeroom/Snakedex-Viewer/issues"
},
"homepage": "https://github.com/Snakeroom/Snakedex-Viewer#readme",
"devDependencies": {
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^8.12.0",
"eslint-config-haykam": "^1.16.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.3",
"html-minify-loader": "^1.4.0",
"html-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0"
},
"eslintConfig": {
"extends": [
"eslint-config-haykam",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"env": {
"browser": true
},
"rules": {
"semi": "off",
"@typescript-eslint/semi": "error",
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error",
"sort-imports": "error"
}
}
}