forked from GaloyMoney/web-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.41 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
{
"name": "web-wallet",
"version": "0.0.1",
"private": true,
"scripts": {
"build:all": "yarn install && yarn run build:node && yarn run build:files && yarn run build:webpack",
"build:files": "copyfiles -u 1 -e \"src/**/*.ts\" -e \"src/**/*.tsx\" -e \"src/**/*.js\" \"src/**/*\" build/",
"build:node": "rm -rf build && tsc --sourceMap false --skipLibCheck true",
"build:webpack": "webpack --mode=production --env=prod",
"code:check": "yarn tsc:check && yarn eslint:check && yarn prettier:check",
"dev:bundler": "cross-env-file webpack -w --mode=development --env=dev",
"dev:server": "cross-env-file tsnd --files --respawn src/server/server.ts --ignore-watch node_modules,public",
"dev:docker": "docker-compose --env-file /dev/null up",
"eslint:check": "eslint . --ext ts --ext tsx",
"eslint:fix": "eslint . --ext ts --ext tsx --fix",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"prod:start": "node build/server/server.js",
"test:verify": "jest --coverage",
"test": "cross-env-file -p .env.local jest",
"tsc:check": "tsc --pretty --noEmit --skipLibCheck"
},
"dependencies": {
"@galoymoney/client": "^0.1.3",
"@galoymoney/react": "^0.1.4",
"@ory/client": "^0.0.1-alpha.91",
"@ory/integrations": "^0.2.2",
"@ory/kratos-client": "^0.8.2-alpha.1",
"@ory/themes": "^0.0.101",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/body-parser": "^1.19.2",
"@types/cookie-session": "^2.0.44",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/serialize-javascript": "^5.0.2",
"autoprefixer": "^10.4.2",
"axios": "^0.25.0",
"body-parser": "^1.19.2",
"buffer": "^6.0.3",
"cookie-session": "^2.0.0",
"copy-to-clipboard": "^3.3.1",
"copyfiles": "^2.4.1",
"cross-env-file": "^1.0.0",
"cross-fetch": "^3.1.4",
"css-loader": "^6.6.0",
"ejs": "^3.1.6",
"express": "^4.17.3",
"graphql": "^16.2.0",
"helmet": "^5.0.1",
"history": "^5.2.0",
"mini-css-extract-plugin": "^2.5.2",
"morgan": "^1.10.0",
"normalize.css": "^8.0.1",
"postcss": "^8.4.6",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.2.1",
"postcss-mixins": "^9.0.1",
"postcss-nested": "^5.0.6",
"react": "18.0.0-rc.0-next-2ed58eb88-20220126",
"react-dom": "18.0.0-rc.0-next-2ed58eb88-20220126",
"react-error-boundary": "^3.1.4",
"react-qrcode-logo": "^2.5.0",
"regenerator-runtime": "^0.13.9",
"serialize-javascript": "^6.0.0",
"source-map-loader": "^3.0.1",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.1",
"subscriptions-transport-ws": "^0.11.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"url": "^0.11.0",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-jest": "^27.5.1",
"eslint": "^8.9.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typesync": "^0.8.0"
},
"resolutions": {
"axios": "^0.26.0"
}
}