forked from do-me/SemanticFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "semanticfinder",
"version": "1.0.0",
"description": "Update: just improved the UI - automatically scroll through the results!",
"main": "src/js/index.js",
"scripts": {
"lint": "eslint --fix src",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --mode development",
"build": "webpack --config webpack.config.js",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix src"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@lizozom/semanticjs": "^1.0.7",
"@xenova/transformers": "^2.2.0",
"bootstrap": "^5.0.2",
"codemirror": "^5.52.2"
},
"devDependencies": {
"css-loader": "^6.8.1",
"eslint": "^8.45.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.0",
"mini-css-extract-plugin": "^2.7.6",
"style-loader": "^3.3.3",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}