-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 986 Bytes
/
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
{
"name": "preact-test",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "webpack serve -c config/webpack.config.dev.js",
"build": "webpack -c config/webpack.config.prod.js",
"lint": "eslint ./src",
"lint:fix": "eslint --fix --quiet ./src"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"preact": "^10.10.0",
"preact-router": "^4.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"ghooks": "^2.0.4",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.7.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0"
}
}