forked from lacabra/proco-map-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.1 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
95
96
97
98
{
"name": "nextjs-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check \"**/*.+(js|jsx|json|yml|yaml|css|vue)\"",
"format:fix": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|vue)\""
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"bootstrap": "^4.5.2",
"cookies": "^0.8.0",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"mapbox-gl": "^1.12.0",
"next": "^9.5.5",
"next-auth": "^3.1.0",
"node-sass": "^4.14.1",
"pg": "^8.3.3",
"pgtools": "^0.3.0",
"react": "^16.13.1",
"react-bootstrap": "^1.3.0",
"react-cookie": "^4.0.3",
"react-dom": "^16.13.1",
"react-mapbox-gl": "^4.8.6",
"request-ip": "^2.1.3",
"styled-components": "latest",
"uuid": "^8.3.0"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "2.2.1"
},
"eslintConfig": {
"extends": [
"plugin:react/recommended",
"prettier",
"plugin:prettier/recommended"
],
"plugins": [
"prettier",
"react"
],
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"react/prop-types": "off",
"react/react-in-jsx-scope": "off"
}
},
"prettier": {
"printWidth": 90,
"bracketSpacing": false,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix",
"git add"
],
"*.+(json|css|md)": [
"prettier --write",
"git add"
]
}
}