-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
133 lines (133 loc) · 4.47 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"private": true,
"license": "BSD-4-Clause",
"type": "module",
"engines": {
"node": ">= 20.18.1"
},
"scripts": {
"prettify": "prettier --write \"src/**/*.ts*\" \"src/**/*.css*\"",
"lint": "yarn run lint-css --formatter github && yarn run lint-js",
"lint-js": "eslint --max-warnings 0 --config ./.eslintrc.json \"src/**/*.ts*\"",
"lint-css": "stylelint --max-warnings 0 \"src/**/*.css\"",
"css": "tcm --namedExports --pattern 'src/frontend/**/*.module.css' && eslint --fix --config ./.eslintrc.json \"src/**/*.css.d.ts\"",
"test": "tsc --noEmit && LC_ALL=en_US.UTF-8 jest",
"storybook": "storybook dev --port 6007",
"dev": "yarn parcel watch",
"build": "NODE_OPTIONS=--no-experimental-fetch yarn parcel build",
"start": "node --enable-source-maps dist/backend/server.js",
"dev-start": "echo '{\"type\":\"commonjs\"}' > dist/package.json && supervisor --watch dist/backend/ -- --enable-source-maps dist/backend/server.js"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.709.0",
"@hapi/basic": "^7.0.2",
"@hapi/boom": "^10.0.1",
"@hapi/hapi": "^21.3.7",
"@hapi/inert": "^7.1.0",
"@kiltprotocol/sdk-js": "^0.35.0",
"@kiltprotocol/vc-export": "^0.35.0",
"@polkadot/keyring": "^12.6.2",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"detect-browser": "^5.3.0",
"dotenv": "^16.4.7",
"exiting": "^6.1.0",
"got": "^11.8.6",
"hapi-dev-errors": "^4.0.0",
"hapi-gate": "^2.1.0",
"hapi-pino": "^12.1.0",
"http-status-codes": "^2.3.0",
"ky": "^1.7.3",
"node-cache": "^5.1.2",
"pino": "^8.21.0",
"prom-client": "^15.1.3",
"punycode": "^2.3.1",
"rate-limiter-flexible": "^4.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^5.3.4",
"twitter-api-v2": "^1.18.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@jest/globals": "^29.7.0",
"@parcel/optimizer-data-url": "^2.7.0",
"@parcel/transformer-inline-string": "^2.7.0",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-controls": "^8.4.7",
"@storybook/addon-styling": "^1.3.7",
"@storybook/addon-toolbars": "^8.4.7",
"@storybook/addon-viewport": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-webpack5": "^8.4.7",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/hapi__basic": "^5.1.6",
"@types/hapi__hapi": "^20.0.13",
"@types/hapi__inert": "^5.2.10",
"@types/jest": "^29.5.14",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.17.10",
"@types/react": "^18.3.16",
"@types/react-dom": "^18.3.5",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.11.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"parcel": "^2.7.0",
"pino-pretty": "^13.0.0",
"postcss": "^8.4.49",
"postcss-modules": "^6.0.1",
"prettier": "^3.4.2",
"react-router": "^5.3.4",
"storybook": "^8.4.7",
"stylelint": "^16.11.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-standard": "^36.0.1",
"supervisor": "^0.12.0",
"ts-jest": "^29.2.5",
"typed-css-modules": "^0.9.1",
"typescript": "^5.7.2"
},
"targets": {
"frontend": {
"context": "browser",
"engines": {
"browsers": "last 2 Chrome versions, last 2 Firefox versions"
},
"source": [
"src/frontend/index.html",
"src/frontend/email.html",
"src/frontend/about.html",
"src/frontend/terms.html",
"src/frontend/privacy.html",
"src/frontend/verifier.html",
"src/frontend/sign.html",
"src/frontend/404.html",
"src/frontend/maintenance.html"
],
"distDir": "dist/frontend"
},
"backend": {
"context": "node",
"source": "src/backend/server.ts",
"distDir": "dist/backend",
"outputFormat": "esmodule"
}
},
"packageManager": "[email protected]"
}