-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.17 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.17 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "tsukumart",
"version": "1.0.0",
"description": "Front-end web application for TsukuMart",
"main": "index.js",
"author": "narumincho",
"license": "ISC",
"scripts": {
"debugInLocal": "npx vite",
"eslint-fix": "eslint ./source --fix",
"typeCheck": "tsc --project tsconfig.json --noEmit",
"update-package-json": "ncu -u"
},
"dependencies": {
"firebase": "9.15.0"
},
"devDependencies": {
"@types/fs-extra": "9.0.13",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"elm": "0.19.1-5",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"firebase-tools": "11.22.0",
"fs-extra": "11.1.0",
"npm-check-updates": "16.6.2",
"prettier": "2.8.1",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"vite": "4.0.3",
"vite-plugin-elm": "2.7.2"
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"eslintConfig": {
"extends": [
"eslint:all",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"plugins": [
"@typescript-eslint"
],
"env": {
"browser": true,
"node": true,
"es6": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module",
"project": [
"./source/tsconfig.json",
"./tsconfig.json"
]
},
"rules": {
"no-constant-condition": [
"error",
{
"checkLoops": false
}
],
"no-else-return": [
"error",
{
"allowElseIf": false
}
],
"one-var": [
"error",
"never"
],
"no-magic-numbers": "off",
"no-undefined": "off",
"default-case": "off",
"no-ternary": "off",
"id-length": "off",
"consistent-return": "off",
"new-cap": "off",
"no-use-before-define": "off",
"max-lines": "off",
"no-console": "off",
"max-params": "off",
"prefer-template": "off",
"spaced-comment": "off",
"no-bitwise": "off",
"capitalized-comments": "off",
"array-callback-return": "off",
"sort-keys": "off",
"@typescript-eslint/restrict-plus-operands": [
"error",
{
"checkCompoundAssignments": true
}
],
"@typescript-eslint/array-type": [
"error",
{
"default": "generic"
}
],
"@typescript-eslint/consistent-type-definitions": [
"error",
"type"
],
"@typescript-eslint/no-dynamic-delete": "error",
"@typescript-eslint/no-require-imports": "error",
"@typescript-eslint/no-unnecessary-qualifier": "error",
"@typescript-eslint/no-unused-expressions": "error",
"@typescript-eslint/prefer-for-of": "error",
"@typescript-eslint/require-array-sort-compare": "error",
"@typescript-eslint/no-use-before-define": [
"error",
{
"variables": false
}
],
"@typescript-eslint/no-empty-function": "off"
}
}
}