-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.38 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
{
"name": "differenzo",
"description": "Inspect, visualize, and save differences between texts ",
"version": "0.0.1",
"author": "Mauricio Martínez <@moudev / @_codemart>",
"scripts": {
"dev": "vite",
"build": "npm run build-myers && vite build",
"build-myers": "cd packages/myers-diff && npm run build",
"preview": "vite preview",
"lint:fix": "eslint ./src --ext .jsx,.js --fix --ignore-path ./.gitignore",
"lint:format": "prettier --write \"./**/*.{js,jsx,css,md,json}\" ",
"lint": "yarn lint:format && yarn lint:fix ",
"prepare": "husky install"
},
"dependencies": {
"@moudev/myers-diff": "workspace:*",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"short-uuid": "^4.2.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^1.0.7",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.2.0",
"prettier": "^2.5.1",
"vite": "^2.7.2",
"vite-plugin-windicss": "^1.6.3",
"windicss": "^3.4.3"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
"*.{css,md,json}": "prettier --write"
}
}