-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.93 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.93 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
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@rsksmart/rlogin",
"version": "1.6.1",
"description": "Login tool for RSK",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --coverage --ci",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"lint": "npx eslint 'src/**/*.{js,ts,tsx}' 'test/**/*.{js,ts,tsx}' --ext .json,.js,.ts",
"lint:fix": "npx eslint 'src/**/*.{js,ts,tsx}' 'test/**/*.{js,ts,tsx}' --ext .json,.js,.ts --fix",
"build": "webpack --env=production",
"build:dev": "webpack --env=development --watch",
"sample:dapp": "concurrently \"npm run build:dev\" \"node sample/launcher.js\" \"serve dist -l 3005\" \"serve sample/front -l 3006\"",
"sample:open": "concurrently \"npm run build:dev\" \"node sample/launcher.js backend\" \"serve dist -l 3005\" \"serve sample/front -l 3006\" \"nodemon --watch sample/back sample/back/index.js\"",
"sample:permissioned": "concurrently \"npm run build:dev\" \"node sample/launcher.js backend\" \"serve dist -l 3005\" \"serve sample/front -l 3006\" \"nodemon --watch sample/back sample/back/index.js permissioned\"",
"sample:cypress": "concurrently \"node sample/launcher.js backend\" \"serve dist -l 3005\" \"serve sample/front -l 3006\" \"nodemon --watch sample/back sample/back/index.js permissioned\"",
"serve": "serve dist -l 3005",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rsksmart/rLogin.git"
},
"keywords": [
"rif",
"rsk",
"web3",
"ipfs"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/rsksmart/rLogin/issues"
},
"homepage": "https://github.com/rsksmart/rLogin#readme",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@rsksmart/express-did-auth": "^0.1.7",
"@types/enzyme": "3.10.12",
"@types/enzyme-adapter-react-16": "^1.0.9",
"@types/jest": "^27.5.2",
"@types/node": "^14.11.8",
"@types/react": "^17.0.52",
"@types/react-dom": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-jest": "^27.5.1",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"cypress": "^13.8.1",
"did-jwt": "^8.0.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.8",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"express": "^4.19.2",
"jest": "^27.5.1",
"jest-transform-stub": "^2.0.0",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"nodemon": "^3.1.0",
"open": "^10.1.0",
"serve": "^14.2.3",
"ts-jest": "^27.1.5",
"ts-loader": "^9.5.1",
"typescript": "^4.9.5",
"url-loader": "^4.1.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2"
},
"dependencies": {
"@rsksmart/ipfs-cpinner-client-types": "^0.1.3",
"@rsksmart/mock-web3-provider": "^1.0.1",
"@rsksmart/rlogin-dpath": "^1.0.3",
"@rsksmart/vc-json-schemas-parser": "^1.0.1",
"@types/styled-components": "5.1.30",
"assert": "^2.1.0",
"axios": "^1.6.8",
"bignumber.js": "^9.1.2",
"buffer": "^6.0.3",
"did-resolver": "^4.1.0",
"ethr-did-resolver": "^10.1.5",
"i18next": "^20.3.5",
"i18next-browser-languagedetector": "^6.1.2",
"react-i18next": "^11.11.4",
"stream-browserify": "^3.0.0",
"styled-components": "^5.3.11",
"web3-utils": "^1.5.3",
"web3modal": "1.9.5"
},
"overrides": {
"semver": ">7.5.3",
"word-wrap": ">=1.2.4",
"xml2js": ">=0.5.0",
"typeorm": ">=0.2.45",
"follow-redirects": ">=1.15.6"
}
}