-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 901 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
{
"name": "@fliegwerk/search-popup",
"version": "2.0.0",
"scripts": {
"build": "webpack",
"start": "webpack --watch",
"style": "prettier -w src/**/*.*",
"release": "standard-version -a"
},
"standard-version": {
"scripts": {
"postbump": "npm run build",
"precommit": "git add dist"
}
},
"author": "Pablo Klaschka",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/preact-custom-element": "^4.0.1",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^6.7.3",
"extract-text-webpack-plugin": "^3.0.2",
"license-webpack-plugin": "^4.0.2",
"prettier": "^2.8.3",
"standard-version": "^9.5.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"preact": "^10.11.3",
"preact-custom-element": "^4.2.1"
}
}