-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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
{
"name": "@minswap/eslint-plugin",
"version": "1.1.0",
"description": "Custom set of eslint rules for Minswap Labs",
"main": "dist/index.js",
"scripts": {
"clean": "rm -Rf ./dist/",
"build": "npm run clean && mkdir ./dist && tsc --project tsconfig.build.json",
"test": "jest",
"format": "prettier --write src/**/* && eslint --fix --ext .ts .",
"check-format": "prettier --check src/**/* && eslint --ext .ts ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@typescript-eslint/utils": "^5.60.1"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/eslint": "^8.40.2",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"typescript": "^5.1.5"
}
}