-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "svgdiff",
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next",
"lint": "eslint --ext .tsx,.ts,.jsx,.js . --quiet",
"start": "next start",
"test": "tsc && npm run lint"
},
"dependencies": {
"@rehooks/component-size": "^1.0.3",
"ace-builds": "^1.4.12",
"autoprefixer": "^10.2.5",
"classnames": "^2.3.1",
"next": "^10.0.1",
"postcss": "^8.2.10",
"postcss-preset-env": "^6.7.0",
"react": "^17.0.1",
"react-ace": "^9.0.0",
"react-dom": "^17.0.1",
"tailwindcss": "^2.1.1"
},
"devDependencies": {
"@types/node": "^14.14.7",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.13.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"prettier-package-json": "^2.1.3",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{*.js,*.ts,*.tsx,*.json,*.md,*.yml}": [
"prettier --write",
"git add"
],
"**/package.json": [
"prettier-package-json --write",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true
}
}