-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.81 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
{
"name": "transcribee-website",
"version": "0.1.0",
"scripts": {
"dev": "next dev -p 1234",
"build": "next build",
"start": "next start",
"format": "prettier -w 'src/**/*.(ts|tsx)'",
"check": "npm-run-all --continue-on-error check:*",
"check:tsc": "tsc --noEmit --incremental",
"check:eslint": "eslint --max-warnings 0 --ext .ts,.tsx .",
"check:format": "prettier --check 'src/**/*.(ts|tsx)'",
"test": "jest",
"update": "npm-check -u"
},
"author": "transcribee team <[email protected]>",
"maintainers": [
"anuejn <[email protected]>",
"pajowu <[email protected]>",
"phlmn <[email protected]>",
"vup <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/bugbakery/transcribee-website"
},
"license": "AGPL-3.0-only",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.11",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"autoprefixer": "^10.4.16",
"eslint": "^8.51.0",
"eslint-config-next": "13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react": "^7.33.2",
"npm-check": "^6.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vite": "^4.4.11"
},
"dependencies": {
"@fontsource/inter": "^5.0.12",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"clsx": "^2.0.0",
"next": "^13.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-intersection-observer": "^9.8.2",
"tailwindcss": "^3.3.3",
"typed.js": "^2.1.0"
}
}