-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.1 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "kiosk-browser",
"version": "1.0.0",
"description": "Generic kiosk-mode browser.",
"keywords": [],
"homepage": "https://github.com/votingworks/kiosk-browser",
"license": "GPL-3.0-only",
"author": {
"name": "VotingWorks",
"email": "[email protected]"
},
"main": "build/src/index.js",
"scripts": {
"app:dir": "electron-builder --dir",
"app:dist": "USE_SYSTEM_FPM=true electron-builder",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "yarn lint --fix",
"start": "tsc && electron .",
"test": "jest",
"test:ci": "yarn test:coverage && yarn test:integration",
"test:coverage": "jest --coverage",
"test:integration": "./test/integration/run",
"test:watch": "jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "tsc && lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --quiet --fix",
"package.json": "sort-package-json"
},
"dependencies": {
"chalk": "^3.0.0",
"debug": "^4.1.1",
"multimatch": "^4.0.0",
"uuid": "^8.3.1",
"xrandr-parse": "^1.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/debug": "^4.1.5",
"@types/jest": "^27.5.1",
"@types/memorystream": "^0.3.0",
"@types/node": "16.11.29",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"body-parser": "^1.20.0",
"concurrently": "^7.2.0",
"electron": "17",
"electron-builder": "^23.0.3",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"expect": "28.1.0",
"husky": "^4.2.1",
"jest": "^29.7.0",
"lint-staged": "^10.0.7",
"memorystream": "^0.3.1",
"prettier": "^2.6.2",
"sort-package-json": "^1.39.1",
"ts-jest": "^29.2.5",
"typescript": "^4.6.4",
"vite": "^2.9.13"
},
"build": {
"appId": "com.votingworks.kiosk-browser",
"files": [
"build/src/**/*"
],
"linux": {
"target": "deb",
"category": "Utility"
}
},
"productName": "kiosk-browser"
}