-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.45 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
{
"name": "vocascan-desktop",
"version": "1.3.0",
"private": true,
"description": "A highly configurable vocabulary trainer",
"author": "vocascan <[email protected]>",
"main": "src/electron/index.js",
"repository": {
"type": "git",
"url": "https://github.com/vocascan/vocascan-desktop.git"
},
"scripts": {
"start": "concurrently \"cross-env BROWSER=none npm run start:react\" \"wait-on http://localhost:3000 && electron .\"",
"start:react": "npm run --prefix src/vocascan-frontend start",
"start:electron": "electron .",
"build": "npm run build:react && npm run build:electron",
"build:react": "npm run --prefix src/vocascan-frontend build",
"build:electron": "electron-builder",
"test": "npm run lint",
"lint": "npm run lint:js && npm run lint:react",
"lint:js": "eslint .",
"lint:react": "npm run --prefix src/vocascan-frontend lint"
},
"dependencies": {
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.3.2",
"electron-updater": "^4.3.8",
"i18next": "^21.3.3",
"i18next-node-fs-backend": "^2.1.3",
"semver": "^6.3.0",
"wait-on": "^5.2.1"
},
"devDependencies": {
"electron": "^16.0.5",
"electron-builder": "^22.10.5",
"electron-devtools-installer": "^3.1.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1"
},
"metadata": {}
}