-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.47 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
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@geospoc/unc-sch-csp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 8000",
"start:container": "next build && 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": {
"@material-ui/core": "^4.12.0",
"@material-ui/icons": "^4.11.2",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"aws-sdk": "^2.958.0",
"bootstrap": "^4.5.2",
"cookies": "^0.8.0",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"lodash": "^4.17.21",
"mapbox-gl": "^1.13.1",
"next": "^9.5.5",
"next-auth": "3.27.3",
"pg": "^8.6.0",
"pgtools": "^0.3.2",
"react": "^16.14.0",
"react-bootstrap": "^1.6.1",
"react-cookie": "^4.0.3",
"react-device-detect": "^1.17.0",
"react-dom": "^16.14.0",
"react-mapbox-gl": "^4.8.6",
"request-ip": "^2.1.3",
"sass": "^1.35.1",
"styled-components": "^5.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "2.2.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"eslint:recommended",
"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"
]
},
"engines": {
"node": ">=14",
"npm": ">=6"
}
}