aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorLibravatar mhatvan <markus_hatvan@aon.at>2021-08-04 17:44:54 +0200
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-08-04 15:57:58 +0000
commit13f6d34cefb3bc5e3ba65a959304d4465f0ee92a (patch)
tree7739098f6f25140fa96877e2d05f98b5929f90f2 /package.json
parentBump tar from 4.4.10 to 4.4.15 (diff)
downloadferdium-server-13f6d34cefb3bc5e3ba65a959304d4465f0ee92a.tar.gz
ferdium-server-13f6d34cefb3bc5e3ba65a959304d4465f0ee92a.tar.zst
ferdium-server-13f6d34cefb3bc5e3ba65a959304d4465f0ee92a.zip
chore: improve dev setup
- upgrade uuid, eslint, husky - improve .eslintrc.js and correct lint script - update uuid imports to conform to v8 - add .prettierrc.js for consistent formatting - file changes due to lint --fix
Diffstat (limited to 'package.json')
-rw-r--r--package.json17
1 files changed, 7 insertions, 10 deletions
diff --git a/package.json b/package.json
index 6673fb9..77d05e7 100644
--- a/package.json
+++ b/package.json
@@ -13,7 +13,7 @@
13 "prepare": "husky install", 13 "prepare": "husky install",
14 "start": "node server.js", 14 "start": "node server.js",
15 "test": "node ace test", 15 "test": "node ace test",
16 "lint": "eslint --quiet --fix ./" 16 "lint": "eslint \"{app,public,start}/**/*.js\" --quiet --fix"
17 }, 17 },
18 "keywords": [ 18 "keywords": [
19 "adonisjs", 19 "adonisjs",
@@ -45,17 +45,14 @@
45 "pg": "^7.18.2", 45 "pg": "^7.18.2",
46 "sqlite3": "^4.1.0", 46 "sqlite3": "^4.1.0",
47 "targz": "^1.0.1", 47 "targz": "^1.0.1",
48 "uuid": "^3.3.3" 48 "uuid": "^8.3.2"
49 }, 49 },
50 "devDependencies": { 50 "devDependencies": {
51 "eslint": "^6.3.0", 51 "eslint": "^7.32.0",
52 "eslint-config-airbnb": "^18.1.0", 52 "eslint-config-airbnb-base": "^14.2.1",
53 "eslint-config-airbnb-base": "^14.1.0", 53 "eslint-plugin-import": "^2.23.4",
54 "eslint-plugin-import": "^2.20.2", 54 "husky": "^7.0.1",
55 "eslint-plugin-jsx-a11y": "^6.2.3", 55 "prettier": "2.3.2"
56 "eslint-plugin-react": "^7.19.0",
57 "eslint-plugin-react-hooks": "^1.7.0",
58 "husky": "^6.0.0"
59 }, 56 },
60 "autoload": { 57 "autoload": {
61 "App": "./app" 58 "App": "./app"