-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.21 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
{
"name": "crypto-keep",
"version": "1.0.0",
"description": "Crypto wallet",
"main": "index.js",
"scripts": {
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"cy:open": "cypress open",
"backend:start": "node backend/server.js",
"frontend:startDev": "npm run build:dev && npx webpack serve",
"frontend:startProd": "npm run build:prod && npx webpack serve",
"test:apiSendCurrency": "npx mocha cypress/tests/api/sendCurrency.js",
"test:api": "cypress run --spec 'cypress/tests/api/*.js' && npm run test:apiSendCurrency",
"test:ui": "cypress run --spec 'cypress/tests/ui/*.js'",
"test:regression": "npm run deleteTestResults && npm run test:api && npm run test:ui",
"deleteTestResults": "del-cli --force ./cypress/screenshots ./cypress/videos"
},
"author": "Maksym Nyrka",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/maksym-nyrka/crypto-keep.git"
},
"bugs": {
"url": "https://github.com/maksym-nyrka/crypto-keep/issues"
},
"homepage": "https://github.com/maksym-nyrka/crypto-keep#readme",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@webpack-cli/generators": "^3.0.1",
"animate.css": "^4.1.1",
"assert": "^2.0.0",
"axios": "^1.4.0",
"babel-loader": "^9.1.2",
"buffer": "^6.0.3",
"css-loader": "^6.7.3",
"cypress": "^12.12.0",
"del-cli": "^5.0.0",
"dotenv": "^16.0.3",
"style-loader": "^3.3.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.15.0"
},
"dependencies": {
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^5.1.3",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"ethereum-address": "^0.0.4",
"ethereum-private-key-to-address": "^0.0.7",
"ethereumjs-tx": "^1.3.7",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.5.0",
"stream-browserify": "^3.0.0",
"swagger-ui-express": "^4.6.3",
"sweetalert2": "^11.7.3",
"tiny-secp256k1": "^2.2.1",
"wallet-address-validator": "^0.2.4",
"web3": "^1.9.0"
}
}