-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.97 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
{
"repository": "git@github.com:galaniprojects/ctypehub.git",
"license": "BSD-4-Clause",
"type": "module",
"packageManager": "pnpm@9.6.0",
"engines": {
"node": ">=20"
},
"scripts": {
"prettify": "prettier --write \"src/**/*.astro\" \"src/**/*.ts*\" \"src/**/*.css*\"",
"lint": "pnpm lint-css --formatter github && pnpm lint-js",
"lint-js": "eslint --max-warnings 0 --config ./.eslintrc.json \"src/**/*.astro\" \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint-css": "stylelint --max-warnings 0 \"src/**/*.astro\" \"src/**/*.css\"",
"test": "tsc --noEmit && astro check && vitest",
"dev": "astro dev --port 3000",
"start-db": "docker run -d --rm --name postgres -e POSTGRES_PASSWORD=postgres -p 5432:5432 postgres",
"stop-db": "docker rm -f postgres",
"migrate": "sequelize-cli db:migrate",
"seed": "sequelize-cli db:seed:all || exit 0",
"build": "export $(grep -v '^#' .env.example | xargs) && astro build",
"start": "pnpm migrate && pnpm seed && node --enable-source-maps dist/server/entry.mjs"
},
"dependencies": {
"@astrojs/node": "^6.1.0",
"@astrojs/react": "^3.6.0",
"@kiltprotocol/sdk-js": "^0.35.2",
"@polkadot/extension-dapp": "^0.46.5",
"@polkadot/util": "^12.6.2",
"astro": "^3.6.5",
"got": "^12.6.1",
"http-status-codes": "^2.3.0",
"lodash-es": "^4.17.21",
"pg": "^8.12.0",
"pg-hstore": "^2.3.4",
"pino": "^8.21.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sequelize": "^6.37.3",
"sequelize-cli": "^6.6.2",
"sharp": "^0.33.4",
"slash": "^4.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@astrojs/check": "^0.3.4",
"@testcontainers/postgresql": "^10.9.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.6",
"@types/prettier": "^3.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-astro": "^0.34.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-vitest": "^0.4.1",
"jest-serializer-vue": "^3.1.0",
"jsdom": "^24.1.1",
"pino-pretty": "^11.2.1",
"postcss-html": "^1.7.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.0",
"stylelint": "^16.6.1",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^36.0.0",
"testcontainers": "^10.9.0",
"typescript": "^5.4.5",
"vitest": "^0.34.6",
"vitest-github-actions-reporter": "^0.11.1"
}
}