-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "iota-wallet",
"author": "Tuditi",
"version": "0.0.1",
"license": "Apache-2.0",
"description": "An example IOTA wallet with Svelte, Electron, and TypeScript.",
"private": true,
"main": "dist/electron/index.js",
"devDependencies": {
"@babel/eslint-parser": "^7.15.0",
"@tsconfig/svelte": "^1.0.10",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"electron": "^15.2.0",
"electron-builder": "^22.13.1",
"electron-webpack": "^2.8.2",
"electron-webpack-ts": "^4.0.1",
"eslint": "^7.32.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-svelte3": "^3.2.0",
"mini-css-extract-plugin": "^1.3.4",
"nodemon": "^2.0.14",
"prettier": "^2.3.2",
"svelte": "^3.31.2",
"svelte-bootstrap-icons": "^1.6.1",
"svelte-check": "^1.0.46",
"svelte-loader": "^3.0.0",
"svelte-preprocess": "^4.3.0",
"ts-loader": "^8.0.4",
"tslib": "^2.0.1",
"typescript": "^4.4.4",
"webpack": "^5.16.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"compile": "tsc",
"dev": "npm run build && npm run compile && electron .",
"lint": "eslint . --cache",
"nodemon": "nodemon",
"validate": "svelte-check"
},
"dependencies": {
"@iota/iota.js": "^1.8.1",
"bootstrap": "^5.1.3",
"electron-reload": "^2.0.0-alpha.1",
"electron-store": "^8.0.1",
"electron-updater": "^4.3.9"
}
}