-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.24 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.24 KB
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
81
82
83
84
{
"name": "electron-modules-sample",
"version": "0.1.5",
"private": true,
"description": "electron modules sample",
"keywords": [
"electron"
],
"repository": {
"type": "git",
"url": "git://github.com/electron-modules/electron-modules-sample.git"
},
"main": "./src/main.js",
"dependencies": {
"@electron/remote": "2",
"debug": "^4.3.4",
"detect-port": "1",
"easy-i18n-cli": "1",
"electrom": "19",
"electron-json-storage-alt": "18",
"electron-webview-schedule": "18",
"electron-windows": "18",
"electron-windows-titlebar": "1",
"graceful-updater": "1",
"lodash": "4",
"lovefield": "^2.1.12",
"moment": "^2.29.4",
"network-interface": "18",
"semver": "^7.3.8",
"sql.js": "^1.8.0",
"windows-verify-trust": "1"
},
"optionalDependencies": {
"@journeyapps/sqlcipher": "^5.3.1"
},
"devDependencies": {
"@applint/spec": "^1.2.3",
"@electron/asar": "3",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.181",
"@types/node": "^18.15.11",
"cross-env": "^7.0.3",
"dexie": "^3.2.3",
"electron": "19",
"electron-builder": "^24.6.4",
"electron-installer-dmg": "^4.0.0",
"eslint": "7",
"eslint-config-egg": "^5.1.1",
"eslint-plugin-mocha": "^4.11.0",
"git-contributor": "*",
"gulp": "^4.0.2",
"gulp-nodemon": "^2.5.0",
"husky": "4",
"lint-staged": "^13.2.1",
"mocha": "*",
"monitor.js": "^2.0.1",
"nyc": "^15.1.0",
"startserver": "1",
"ts-jest": "^26.5.6",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"scripts": {
"dev": "gulp dev-app",
"dev:watch": "gulp dev-app --watch",
"test": "nyc --reporter=lcov --reporter=text mocha",
"lint": "eslint . --fix",
"tsc": "tsc -p tsconfig.json",
"build": "npm run tsc && npm run build:main",
"build:main": "electron-builder build --config .electron-builder.config.js",
"reset:db": "sh ./scripts/clean-db.sh",
"translate": "easy-i18n-cli -c ./i18n.config.js",
"translate:check": "npm run translate -- --check",
"contributor": "git-contributor",
"ss": "python3 -m http.server 8888"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT"
}