-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.52 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
{
"name": "@bilions/search-js",
"version": "0.5.5",
"description": "Instance search UI component",
"main": "dist/index.js",
"scripts": {
"dev": "webpack serve --config webpack.cdn.config.js",
"build": "rm -rf dist && webpack && webpack --config webpack.cdn.config.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint ./src/**/*.ts",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx,json}": [
"npm run lint",
"npm run format"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/necessarylion/search-js.git"
},
"keywords": [
"search-js",
"instance",
"search",
"algolia",
"search",
"searchjs",
"ui"
],
"author": "AJ",
"license": "ISC",
"bugs": {
"url": "https://github.com/necessarylion/search-js/issues"
},
"homepage": "https://github.com/necessarylion/search-js#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"css-loader": "^6.7.3",
"eslint": "^8.37.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"sass": "^1.77.8",
"sass-loader": "^13.2.1",
"style-loader": "^3.3.2",
"terser-webpack-plugin": "^5.3.7",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
}
}