-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 987 Bytes
/
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
{
"name": "detroit-land-value-tax-maps",
"version": "0.1.0",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"serve": "vite preview"
},
"dependencies": {
"maplibre-gl": "^3.5.2"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"eslint": "^8.52.0",
"eslint-plugin-import": "^2.29.0",
"prettier": "^3.0.3",
"prettier-eslint": "^16.1.1",
"vite": "^4.5.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"plugins": [
"import"
],
"parser": "@babel/eslint-parser",
"requireConfigFile": false,
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
}
},
"prettier": {
"endOfLine": "lf",
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5"
}
}