-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.13 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.13 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@newm.io/cardano-dapp-wallet-connector",
"version": "1.5.5",
"description": "Cardano dApp wallet connector package",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc && tsc-alias && babel src --out-dir dist --extensions '.ts,.tsx' && cp package.json README.md ./dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prettier-watch": "onchange 'src/**/*.ts' -- prettier --write {{changed}}",
"deploy": "npm run build && npm publish --access public",
"deploy-beta": "npm run build && npm publish --access public --tag beta",
"update-link": "npm run clean && npm run build && npm rm @newm.io/cardano-dapp-wallet-connector -g && npm link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/projectNEWM/cardano-dapp-wallet-connector.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/projectNEWM/cardano-dapp-wallet-connector/issues"
},
"homepage": "https://github.com/projectNEWM/cardano-dapp-wallet-connector#readme",
"dependencies": {
"async-mutex": "^0.5.0",
"bech32": "^2.0.0",
"buffer": "^6.0.3",
"cbor-web": "^8.1.0",
"react-device-detect": "^2.2.2"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@chromatic-com/storybook": "^1.6.0",
"@storybook/addon-actions": "^8.1.11",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-interactions": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/react": "^8.1.11",
"@storybook/react-webpack5": "^8.1.11",
"@storybook/test": "^8.1.11",
"@types/jest": "^29.5.5",
"@types/react": "^18.0.25",
"@types/styled-components": "^5.1.26",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"babel-loader": "^8.3.0",
"babel-plugin-module-resolver": "^5.0.0",
"prettier": "2.7.1",
"react-is": "^18.2.0",
"storybook": "^8.1.11",
"styled-components": "^5.3.6",
"tsc-alias": "^1.8.5",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.ts"
],
"moduleDirectories": [
"node_modules",
"<rootDir>/src"
],
"moduleNameMapping": {
"^common$": "<rootDir>/src/common/index",
"^common/(.*)$": "<rootDir>/src/common/$1"
},
"testMatch": [
"**/__tests__/**/*.(ts|tsx|js)",
"**/*.(test|spec).(ts|tsx|js)"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts",
"!src/**/*.stories.{ts,tsx}"
]
}
}