-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.33 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": "metermade",
"author": "Brendan Nee <[email protected]>",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "xo"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-brands-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.17",
"basic-auth": "^2.0.1",
"bootstrap": "^5.1.3",
"classnames": "^2.3.1",
"es6-promise": "^4.2.8",
"json2csv": "^5.0.6",
"mongoose": "^6.2.2",
"next": "^12.1.0",
"node-sass": "^7.0.1",
"react": "^17.0.2",
"react-bootstrap": "^2.1.2",
"react-dom": "^17.0.2",
"styled-jsx-plugin-sass": "^1.0.0",
"tsscmp": "^1.0.6"
},
"devDependencies": {
"eslint-config-xo-nextjs": "^4.1.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"xo": "^0.48.0"
},
"xo": {
"esnext": true,
"space": true,
"rules": {
"camelcase": [
"error",
{
"properties": "never"
}
],
"object-curly-spacing": [
"error",
"always"
],
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "^[A-Z]"
}
],
"semi": [
"error",
"never"
]
}
}
}