This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.32 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "wikichan",
"version": "3.0.0",
"description": "A WebExtension and userscript to show an info popup on hovering words or phrases.",
"repository": "https://github.com/Dophin2009/wikichan.git",
"homepage": "https://github.com/Dophin2009/wikichan",
"author": "Eric Zhao",
"license": "GPL-3.0",
"scripts": {
"lint:eslint": "eslint --ext .ts,.tsx src",
"lint:types": "tsc --noEmit --skipLibCheck -p .",
"lint": "yarn lint:eslint && yarn lint:types",
"dev:userscript": "yarn dev userscript",
"dev:firefox": "yarn dev firefox",
"dev:chrome": "yarn dev chrome",
"dev:opera": " yarn dev opera",
"dev:edge": "yarn dev edge",
"dev:qutebrowser": "yarn dev qutebrowser",
"dev": "cross-env TS_NODE_PROJECT=\\\"build/tsconfig.json\\\" ts-node build/build.ts build development",
"start:userscript": "yarn start userscript",
"start:firefox": "yarn start firefox",
"start:chrome": "yarn start chrome",
"start:opera": " yarn start opera",
"start:edge": "yarn start edge",
"start:qutebrowser": "yarn start qutebrowser",
"start": "cross-env TS_NODE_PROJECT=\\\"build/tsconfig.json\\\" ts-node build/build.ts serve",
"build:userscript": "yarn build userscript",
"build:firefox": "yarn build firefox",
"build:chrome": "yarn build chrome",
"build:opera": "yarn build opera",
"build:edge": "yarn build edge",
"build:qutebrowser": "yarn build qutebrowser",
"build": "cross-env TS_NODE_PROJECT=\\\"build/tsconfig.json\\\" ts-node build/build.ts build production",
"postinstall": "rm -rf node_modules/.cache/webpack"
},
"devDependencies": {
"@types/dompurify": "^2.0.1",
"@types/greasemonkey": "^4.0.0",
"@types/node": "^13.13.2",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-frame-component": "^4.1.1",
"@types/sass": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"autoprefixer": "^10.0.4",
"cross-env": "^7.0.2",
"cssnano": "^5.0.1",
"dotenv": "^8.2.0",
"esbuild": "^0.11.11",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-no-unsanitized": "^3.1.4",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"postcss": "^8.2.13",
"postcss-initial": "^4.0.0",
"postcss-loader": "^5.2.0",
"postcss-modules": "^4.0.0",
"prettier": "^2.0.5",
"process": "^0.11.10",
"sass": "^1.32.8",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.4",
"web-ext": "^6.0.0"
},
"dependencies": {
"dompurify": "^2.0.10",
"html-react-parser": "^0.10.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-frame-component": "^5.0.0-alpha.0",
"rxjs": "^6.5.5",
"webextension-polyfill-ts": "^0.15.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn lint:eslint"
]
}
}