-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.72 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
{
"name": "dynash",
"version": "1.0.0",
"private": true,
"scripts": {
"generate": "node db/generation/upload.js"
},
"author": "Philipp Malkov",
"license": "ISC",
"workspaces": [
"packages/*"
],
"dependencies": {
"@koa/cors": "^2.2.3",
"aws-sdk": "^2.610.0",
"dotenv": "^8.2.0",
"dymon": "1.0.0",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.15",
"uuid": "^7.0.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"serverless": "^2.8.0",
"serverless-localstack": "^0.4.28"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"airbnb"
],
"rules": {
"no-use-before-define": [
"error",
{
"functions": false,
"classes": true,
"variables": true
}
],
"no-param-reassign": [
"error",
{
"props": false
}
],
"arrow-parens": [
"error",
"as-needed",
{
"requireForBlockBody": true
}
],
"import/extensions": [
"error",
"ignorePackages"
],
"no-restricted-syntax": [
"error",
"ForInStatement",
"LabeledStatement",
"WithStatement"
],
"no-console": "off"
}
},
"nodemonConfig": {
"verbose": true,
"ignore": [
"node_modules",
".next"
],
"watch": [
"./**/*",
"index.js"
]
}
}