forked from BTE-Trusted-Entity/didsign.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.91 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "did-signing",
"version": "0.1.0",
"private": true,
"description": "DID signing web app",
"repository": "https://github.com/BTE-Trusted-Entity/didsign.git",
"author": "usmangeek <[email protected]>",
"license": "BSD-4-Clause",
"type": "module",
"scripts": {
"dev": "parcel --open",
"build": "parcel build",
"lint-js": "eslint --max-warnings 0 --config ./.eslintrc.json \"src/**/*.ts*\"",
"lint-css": "stylelint \"src/**/*.css\"",
"lint": "yarn run lint-css && yarn run lint-js",
"check": "tsc --noEmit",
"test-size": "bundlewatch --config bundlewatch.config.json",
"prettify": "prettier --write \"src/**/*.ts*\"",
"css": "tcm --namedExports --pattern 'src/**/*.module.css' && eslint --fix --config ./.eslintrc.json \"src/**/*.css.d.ts\""
},
"dependencies": {
"@kiltprotocol/sdk-js": "0.30.0",
"@polkadot/extension-dapp": "^0.44.6",
"@zip.js/zip.js": "^2.6.60",
"body-scroll-lock": "^4.0.0-beta.0",
"buffer": "^6.0.3",
"classnames": "^2.3.2",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"lodash-es": "^4.17.21",
"multiformats": "^10.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-router-dom": "^6.4.5"
},
"devDependencies": {
"@parcel/packager-raw-url": "2.7.0",
"@parcel/transformer-svg-react": "^2.7.0",
"@parcel/transformer-webmanifest": "2.7.0",
"@types/body-scroll-lock": "^3.1.0",
"@types/file-saver": "^2.0.5",
"@types/lodash-es": "^4.17.6",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"bundlewatch": "^0.3.3",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"events": "^3.3.0",
"parcel": "^2.7.0",
"postcss": "8.4.19",
"prettier": "2.8.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stylelint": "^14.16.0",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-standard": "^29.0.0",
"typed-css-modules": "^0.7.2",
"typescript": "^4.9.4"
},
"alias": {
"multiformats/bases/base16": "./node_modules/multiformats/src/bases/base16.js",
"multiformats/codecs/json": "./node_modules/multiformats/src/codecs/json.js",
"multiformats/hashes/hasher": "./node_modules/multiformats/src/hashes/hasher.js"
},
"browserslist": {
"production": [
">1%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"targets": {
"default": {
"source": "src/index.html",
"distDir": "build",
"context": "browser"
}
},
"engines": {
"node": ">=v16.18.1"
}
}