aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-09-05 11:22:49 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-09-05 11:22:49 +0200
commit29b8334b060dc0c05a509d523ead4b3a30229fef (patch)
tree4dbfcfb90a3eff31acd219b27557bbdc594f589f /package.json
parentAdd cookie notice to login page (diff)
downloadferdium-server-29b8334b060dc0c05a509d523ead4b3a30229fef.tar.gz
ferdium-server-29b8334b060dc0c05a509d523ead4b3a30229fef.tar.zst
ferdium-server-29b8334b060dc0c05a509d523ead4b3a30229fef.zip
Add eslint
Diffstat (limited to 'package.json')
-rw-r--r--package.json13
1 files changed, 11 insertions, 2 deletions
diff --git a/package.json b/package.json
index 927c513..3211894 100644
--- a/package.json
+++ b/package.json
@@ -6,7 +6,8 @@
6 "main": "index.js", 6 "main": "index.js",
7 "scripts": { 7 "scripts": {
8 "start": "node server.js", 8 "start": "node server.js",
9 "test": "node ace test" 9 "test": "node ace test",
10 "lint": "eslint --fix ./"
10 }, 11 },
11 "keywords": [ 12 "keywords": [
12 "adonisjs", 13 "adonisjs",
@@ -37,7 +38,15 @@
37 "targz": "^1.0.1", 38 "targz": "^1.0.1",
38 "uuid": "^3.3.3" 39 "uuid": "^3.3.3"
39 }, 40 },
40 "devDependencies": {}, 41 "devDependencies": {
42 "eslint": "^6.3.0",
43 "eslint-config-airbnb": "^18.0.1",
44 "eslint-config-airbnb-base": "^14.0.0",
45 "eslint-plugin-import": "^2.18.2",
46 "eslint-plugin-jsx-a11y": "^6.2.3",
47 "eslint-plugin-react": "^7.14.3",
48 "eslint-plugin-react-hooks": "^1.7.0"
49 },
41 "autoload": { 50 "autoload": {
42 "App": "./app" 51 "App": "./app"
43 } 52 }