-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
64 lines (64 loc) · 1.82 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
{
"name": "bnc-notify",
"version": "1.9.8",
"description": "Show web3 users realtime transaction notifications",
"keywords": [
"ethereum",
"web3",
"blocknative",
"notifications"
],
"main": "dist/notify.umd.js",
"module": "dist/notify.js",
"typings": "dist/types/notify.d.ts",
"files": [
"dist"
],
"author": "Aaron Barnard <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/blocknative/notify"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@pyoner/svelte-ts-preprocess": "^1.2.1",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@tsconfig/svelte": "^1.0.4",
"@types/lodash.debounce": "^4.0.6",
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"@wessberg/rollup-plugin-ts": "^1.2.34",
"babel-plugin-external-helpers": "^6.18.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"rollup": "^2.3.4",
"rollup-plugin-svelte": "^6.1.1",
"svelte": "^3.12.1",
"svelte-check": "^1.0.0",
"svelte-i18n": "^1.1.2-beta",
"svelte-preprocess": "^4.0.0",
"tslib": "^2.0.0",
"typescript": "^3.9.3"
},
"dependencies": {
"bignumber.js": "^9.0.0",
"bnc-sdk": "^4.6.4",
"lodash.debounce": "^4.0.8",
"regenerator-runtime": "^0.13.3",
"uuid": "^3.3.3"
},
"scripts": {
"build": "npm run validate && rollup -c && babel dist/notify.umd.js --out-file dist/notify.umd.js --minified",
"test": "echo \"TBD\" && exit 0",
"prepare": "npm run build",
"validate": "svelte-check"
}
}