-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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": "cyfs-browser-webpage",
"version": "1.0.0",
"description": "1",
"main": "index.js",
"scripts": {
"start": "npx webpack -w",
"build": "npx webpack --mode=production ",
"test": "echo \"Error: no test specified\" && exit 1",
"tscheck": "eslint src/js/*.ts"
},
"author": "",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.5.0",
"eslint-config-alloy": "^4.4.0",
"html-webpack-plugin": "^5.3.2",
"lint-staged": "^11.1.4",
"webpack": "^5.44.0",
"webpack-cli": "^4.10.0"
},
"license": "ISC",
"dependencies": {
"@types/jquery": "^3.5.10",
"@types/qrcode": "^1.4.2",
"cheerio": "^1.0.0-rc.10",
"esbuild-loader": "^2.17.0",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.4",
"jquery": "^3.6.0",
"jsbi": "^4.0.0",
"lodash": "^4.17.21",
"node-html-parser": "^3.3.6",
"qrcode": "^1.5.0",
"style-loader": "^3.0.0",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run tscheck"
}
}
}