-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·53 lines (53 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
45
46
47
48
49
50
51
52
53
{
"name": "ojaman",
"version": "0.0.1",
"license": "MIT",
"private": true,
"scripts": {
"build:dev": "cross-env NODE_ENV=development webpack",
"build:prod": "cross-env NODE_ENV=production webpack",
"lint": "run-p lint:*",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint src --ext .js,.ts",
"fix": "run-s fix:*",
"fix:prettier": "prettier --write \"**/*.{js,ts}\"",
"fix:eslint": "eslint src --ext .js,.ts --fix"
},
"dependencies": {
"clsx": "^1.1.1",
"hark": "^1.2.3",
"preact": "^10.6.2"
},
"devDependencies": {
"@types/chrome": "^0.0.164",
"@types/hark": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"copy-webpack-plugin": "^10.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"esbuild-loader": "^2.16.0",
"eslint": "^8.2.0",
"eslint-config-preact": "^1.2.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.0.2",
"mini-css-extract-plugin": "^2.4.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"sass": "^1.43.5",
"sass-loader": "^12.3.0",
"typescript": "^4.5.2",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{html,js,md,json}": [
"prettier --write"
]
}
}