-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
113 lines (113 loc) · 3.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
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
{
"name": "cardano",
"version": "6.15.0",
"engines": {
"node": "20.11"
},
"description": "A simple Cardano wallet",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vacuumlabs/adalite.git"
},
"keywords": [
"cardano",
"wallet"
],
"author": "Vacuumlabs",
"license": "ISC",
"bugs": {
"url": "https://github.com/vacuumlabs/adalite/issues"
},
"homepage": "https://github.com/vacuumlabs/adalite#readme",
"scripts": {
"start-server": "NODE_ENV=production node server/index.js",
"build": "NODE_ENV=production webpack --progress --config webpack.build.config.js",
"install": "cd app && yarn install && cd ..",
"dev": "yarn generate-cert && ADALITE_ENABLE_HTTPS=true PORT=${PORT:-3000} node server/index.js",
"test:build": "webpack --config webpack.test.config.js",
"test-chrome-headless": "yarn test:build && node node_modules/.bin/mocha-headless-chrome -f app/tests/index.html -a disable-web-security -a user-data-dir=app/tests/.chrome -a disable-site-isolation-trials -a no-sandbox",
"eslint": "eslint . --max-warnings=0 --ext .ts,.tsx,.js,.jsx",
"fix": "prettier-eslint --write \"{{app/frontend,app/tests/src,server}/**/*.{ts,tsx,js,jsx,json,css},package.json}\"",
"generate-cert": "test -e server.cert && echo \"certificate already exists\" || openssl req -nodes -new -x509 -keyout server.key -out server.cert -subj \"/C=US\"",
"cypress:dev": "DOTENV_CONFIG_PATH='./app/cypress/.env.cypress' yarn run dev",
"cypress:open": "cd app && yarn run cypress open",
"cypress:run": "cd app && yarn run cypress run --headless --browser=chrome --config video=${VIDEO:-false}"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{{app/frontend,app/tests/src,server}/**/*.{ts,tsx,js,jsx,json,css},package.json}": [
"prettier-eslint --write",
"git add"
]
},
"dependencies": {
"@sentry/node": "^6.15.0",
"babel-regenerator-runtime": "^6.5.0",
"body-parser": "^1.20.1",
"cardano-crypto.js": "^6.1.2",
"cbor": "^8.1.0",
"check-types": "^8.0.2",
"compression": "^1.7.2",
"device": "^0.3.9",
"dotenv": "^6.0.0",
"express": "^4.21.2",
"express-basic-auth": "^1.2.0",
"express-ipfilter": "^1.1.2",
"express-mung": "^0.5.1",
"glob": "^7.2.0",
"isomorphic-fetch": "^3.0.0",
"normalize-url": "^4.0.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"redis": "^3.1.2",
"redisscan": "^2.0.0",
"stream-browserify": "^3.0.0",
"universal-analytics": "^0.5.3",
"webpack": "^5.90.3",
"webpack-dev-middleware": "^7.0.0",
"webpack-hot-middleware": "^2.26.1"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"babel-eslint": "^8.2.2",
"babel-polyfill": "^6.26.0",
"css-loader": "^5.2.2",
"eslint": "^8.56.0",
"eslint-config-vacuumlabs": "^1.8.2",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"husky": "^3.0.0",
"improved-yarn-audit": "^3.0.0",
"lint-staged": "^9.2.0",
"mini-css-extract-plugin": "^1.5.0",
"mocha-headless-chrome": "^4.0.0",
"prettier": "^3.2.5",
"prettier-eslint-cli": "^8.0.1",
"release-it": "^17.1.1",
"sass": "^1.32.11",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"url-loader": "^4.1.1",
"webpack-cli": "^4.9.1"
},
"resolutions": {
"redisscan/redis": "^3.1.2",
"redisscan/async": "^2.6.4",
"cookie": "^0.7.0",
"elliptic": "^6.6.0"
}
}