-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "reddit-code-highlight",
"version": "1.0.0",
"description": "A web extension that applies syntax highlighting to code blocks on Reddit.",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"watch": "webpack --mode development --watch",
"prettier": "prettier --write",
"lint": "eslint --max-warnings=0 --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,json,css}": [
"npm run prettier"
],
"src/**/*.ts": [
"npm run lint"
]
},
"keywords": [
"reddit",
"syntax highlighting"
],
"author": "Vukašin Stepanović <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/prismjs": "^1.16.2",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"fork-ts-checker-webpack-plugin": "^6.0.6",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3",
"webpack": "^5.10.2",
"webpack-cli": "^4.2.0"
}
}