-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.28 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
{
"name": "web-file-hasher",
"version": "1.0.0",
"description": "This focuses on giving a UI to hash files using wasm.",
"private": true,
"scripts": {
"dev": "webpack-dev-server --open --mode development --hot --config webpack.dev.js",
"build:prod": "rimraf ./dist && webpack --mode production --config webpack.prod.js",
"lint": "eslint . --ext .js",
"lint:fix": "yarn lint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mulgul/web-file-hasher.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mulgul/web-file-hasher/issues"
},
"homepage": "https://github.com/mulgul/web-file-hasher#readme",
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.5.4",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.7.1",
"rimraf": "^5.0.5",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.10.0"
},
"packageManager": "yarn@4.0.2"
}