-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.94 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
{
"name": "website-v5",
"version": "1.0.0",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/@types/index.d.ts",
"scripts": {
"start": "vite serve src --host",
"lint": "eslint .",
"clean": "rm -rf dist",
"build": "npm-run-all clean && tsc -p tsconfig.prod.json --noEmit && vite build && ts-node src/scripts/post-build.ts",
"build:cjs": "tsc -p tsconfig.prod.json --module CommonJS --outDir dist/cjs && cp .build/package.cjs.json dist/cjs/package.json",
"build:esm": "tsc -p tsconfig.prod.json && cp .build/package.esm.json dist/esm/package.json",
"build:types": "tsc -p tsconfig.prod.json --declaration --declarationMap --emitDeclarationOnly --declarationDir dist/@types",
"reinstall": "npm run clean && rm -rf node_modules package-lock.json && npm install",
"preview": "npm run build && vite preview --host"
},
"exports": {
".": {
"import": "./dist/cjs/index.js",
"export": "./dist/esm/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxijonson/website-v5.git"
},
"keywords": [],
"files": [
"dist"
],
"author": "Tristan Chin",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxijonson/website-v5/issues"
},
"homepage": "https://github.com/maxijonson/website-v5#readme",
"engines": {
"node": ">=16.x"
},
"dependencies": {
"@mantine/core": "^5.10.0",
"@mantine/hooks": "^5.10.0",
"i18next": "^22.4.8",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-resources-to-backend": "^1.1.1",
"lodash": "4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.4",
"react-icons": "^4.7.1",
"react-qr-code": "^2.0.11",
"react-router-dom": "6.6.1",
"vite-plugin-eslint": "^1.8.1"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.20",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "4.14.191",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@vitejs/plugin-react": "^3.0.1",
"dotenv": "^16.0.3",
"eslint": "^8.31.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.6.0",
"eslint-config-typescript": "3.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^11.1.0",
"npm-run-all": "4.1.5",
"prettier": "^2.8.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite-imagetools": "^4.0.13",
"wildcard-match": "^5.1.2"
}
}