-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "crowdloan-template",
"type": "module",
"version": "0.0.1",
"private": true,
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"lint": "eslint 'src/**/*.{js,jsx,astro,ts,tsx}'",
"generate-locales": "yarn astro-i18next generate"
},
"dependencies": {
"@astrojs/image": "^0.15.0",
"@astrojs/sitemap": "^1.0.1",
"@astrojs/tailwind": "^3.0.1",
"@fontsource/outfit": "^4.5.11",
"@nanostores/react": "^0.4.1",
"@polkadot/api": "^9.14.1",
"@polkadot/extension-dapp": "^0.44.8",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"astro": "^2.0.13",
"astro-i18next": "^1.0.0-beta.17",
"astro-icon": "^0.8.0",
"luxon": "^3.2.1",
"nanostores": "^0.7.3",
"react-hook-form": "^7.43.1",
"react-i18next": "^12.1.5",
"react-modal": "^3.16.1",
"sharp": "^0.31.3",
"tailwindcss": "^3.2.7"
},
"devDependencies": {
"@astrojs/react": "^2.0.2",
"@types/luxon": "^3.2.0",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-astro": "^0.23.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.8.3",
"prettier": "^2.8.4",
"prettier-plugin-astro": "^0.8.0",
"prettier-plugin-tailwindcss": "^0.2.3",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"engines": {
"node": "^14.15.0 || >=16.0.0"
}
}