-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.46 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.46 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
{
"name": "kaiak",
"version": "1.0.1",
"description": "Kaiak a KaiOS Nano Wallet",
"repository": "https://github.com/Kaiak/kaiak-wallet",
"license": "GPL-2.0-only",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public",
"clean": "rm -f public/bundle*",
"push": "yarn clean && yarn build && kaios-scripts push",
"validate": "svelte-check",
"lint": "eslint 'src/**/*.ts'",
"fixlint": "eslint --fix 'src/**/*.ts'",
"prod": "rollup -c --environment INCLUDE_DEPS,BUILD:production",
"test-all": "yarn lint && yarn test && yarn validate",
"preversion": "yarn test-all",
"postversion": "git push --tags && git push && echo \"Successfully released version $npm_package_version!\"",
"locale": "yarn json-to-properties -c to-json-config.json",
"test": "jest"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@tsconfig/svelte": "^1.0.0",
"@types/dateformat": "^3.0.1",
"@types/jest": "^26.0.20",
"@types/qrcode": "^1.3.5",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-svelte3": "^2.7.3",
"jest": "^26.6.3",
"json-to-properties": "^1.1.3",
"kaios-gaia-l10n": "^0.0.1",
"kaios-scripts": "^0.0.9",
"prettier": "^2.1.2",
"prettier-plugin-svelte": "^1.4.1",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.0.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-manifest-json": "^1.5.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-version-injector": "^1.3.0",
"svelte": "^3.0.0",
"svelte-check": "^1.0.0",
"svelte-preprocess": "^4.0.0",
"ts-jest": "^26.4.4",
"tslib": "^2.0.0",
"typescript": "^4.1.3"
},
"dependencies": {
"bignumber.js": "^9.0.1",
"dateformat": "^4.4.1",
"image-capture": "^0.4.0",
"jsqr": "^1.3.1",
"nano-rpc-fetch": "^1.1.8",
"nanocurrency-web": "^1.3.0",
"qrcode": "^1.4.4",
"redux": "^4.0.5",
"secure-webstore": "^1.3.1",
"sirv-cli": "^1.0.0",
"svelte-spinner": "^2.0.2"
}
}