-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 2.31 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
{
"name": "outline-admin",
"version": "0.1.6",
"private": true,
"scripts": {
"compile": "tsc -p tsconfig.scripts.json && tscpaths -p tsconfig.scripts.tscpaths.json -s ./dist -o ./dist",
"dev": "npm run compile && node ./dist/scripts/start-dev.js",
"dev:next": "next dev --turbo",
"build": "npm run compile && node ./dist/scripts/build.js",
"build:docker": "node ./dist/scripts/build.js",
"start": "echo cd into .next/standalone and run node server.js",
"start:docker": "node ./dist/scripts/start.js",
"lint": "eslint ./scripts ./src --ext .ts,.tsx -c .eslintrc.json --fix",
"format": "prettier --write ./src/**/*.{ts,tsx,json} ./scripts/**/*.{ts,tsx,json}",
"format:check": "prettier --check ./src/**/*.{ts,tsx,json} ./scripts/**/*.{ts,tsx,json}",
"sync": "node ./dist/scripts/outline-sync.js",
"setup": "node ./dist/scripts/setup.js"
},
"dependencies": {
"@heroui/react": "^2.6.14",
"@heroui/theme": "^2.4.6",
"@prisma/client": "6.1.0",
"@react-aria/ssr": "3.9.4",
"@react-aria/visually-hidden": "3.8.12",
"bcrypt": "^5.1.1",
"clsx": "2.1.1",
"framer-motion": "^11.16.4",
"intl-messageformat": "^10.7.10",
"jose": "^5.9.6",
"moment": "^2.30.1",
"next": "14.2.23",
"next-themes": "^0.2.1",
"qr-code-styling": "^1.8.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.54.2",
"slugify": "^1.6.6",
"uuid": "^11.0.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.1.3",
"@types/bcrypt": "^5.0.2",
"@types/node": "20.5.7",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"autoprefixer": "10.4.19",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "4.1.4",
"postcss": "8.4.38",
"prettier": "3.3.3",
"prisma": "^6.1.0",
"tailwind-variants": "0.1.20",
"tailwindcss": "3.4.3",
"tscpaths": "^0.0.9",
"typescript": "5.6.3"
}
}