-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.88 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
64
{
"name": "attention",
"description": "읽기 가이드라인 표시와 드로잉 주석 기능을 제공하는 확장 프로그램 | Extension Providing Reading Guidelines Display and Drawing Annotation Features",
"author": "ssongq",
"version": "1.0.2",
"type": "module",
"scripts": {
"build": "node build.js",
"lint": "npx eslint .",
"lint:fix": "npx eslint --fix .",
"format": "prettier --cache --write .",
"prepare": "husky"
},
"dependencies": {
"idb-keyval": "^6.2.1",
"lodash-es": "^4.17.21",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.1",
"remark-gfm": "^4.0.0",
"rough-notation": "^0.5.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@tailwindcss/typography": "^0.5.15",
"@types/archiver": "^6.0.3",
"@types/chrome": "^0.0.287",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@types/webextension-polyfill": "^0.12.1",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"dotenv": "^16.4.7",
"esbuild": "^0.24.0",
"esbuild-style-plugin": "^1.6.3",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"fs-extra": "^11.2.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"postcss": "^8.4.49",
"postcss-preset-env": "^10.1.1",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"webextension-polyfill": "^0.12.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,mjs}": [
"prettier --cache --write",
"npx eslint --fix"
]
}
}