-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
33 lines (33 loc) · 936 Bytes
/
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
{
"name": "highlight-utils",
"private": true,
"scripts": {
"lint": "eslint ./ --ext .js,.mjs,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write './**/*.{js,json,mjs,ts,tsx,md}'",
"test": "jest"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@next/eslint-plugin-next": "^13.1.1",
"@tanstack/eslint-plugin-query": "^4.29.25",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.33.0",
"jest": "^29.3.1",
"prettier": "^2.0.0",
"prettier-plugin-tailwindcss": "^0.4.0",
"serverless": "^3.33.0",
"serverless-python-requirements": "^6.1.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/aws/email-importer/*",
"<rootDir>/firebase/*",
"<rootDir>/packages/aws-lambda-email-handler/dist/*"
]
}
}