forked from stack-auth/stack-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.39 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.39 KB
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
{
"name": "@stackframe/stack",
"version": "2.5.18",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": {
"default": "./dist/esm/index.js"
},
"require": {
"default": "./dist/index.js"
}
}
},
"homepage": "https://stack-auth.com",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "rimraf dist && npm run codegen && tsup-node",
"codegen": "npm run css",
"clean": "rimraf dist && rimraf node_modules",
"dev": "rimraf dist && concurrently -k \"tsup-node --watch\" \"npm run css:tw:watch\" \"npm run css:sc:watch\"",
"lint": "eslint --ext .tsx,.ts .",
"css": "npm run css:tw && npm run css:sc",
"css:tw:watch": "tailwindcss -i ./src/global.css -o ./src/generated/tailwind.css --watch",
"css:tw": "tailwindcss -i ./src/global.css -o ./src/generated/tailwind.css",
"css:sc": "tsx ./scripts/process-css.ts ./src/generated/tailwind.css ./src/generated/global-css.ts",
"css:sc:watch": "chokidar --silent './src/generated/tailwind.css' -c 'tsx ./scripts/process-css.ts ./src/generated/tailwind.css ./src/generated/global-css.ts'"
},
"files": [
"README.md",
"dist",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@stackframe/stack-sc": "workspace:*",
"@stackframe/stack-shared": "workspace:*",
"@stackframe/stack-ui": "workspace:*",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"color": "^4.2.3",
"cookie": "^0.6.0",
"js-cookie": "^3.0.5",
"lucide-react": "^0.378.0",
"oauth4webapi": "^2.10.3",
"oslo": "^1.2.1",
"qrcode": "^1.5.4",
"react-hook-form": "^7.51.4",
"rimraf": "^5.0.5",
"server-only": "^0.0.1",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.7.2",
"yup": "^1.4.0"
},
"peerDependencies": {
"next": ">=14.1",
"react": ">=18.2"
},
"devDependencies": {
"@types/color": "^3.0.6",
"@types/cookie": "^0.6.0",
"@types/js-cookie": "^3.0.6",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.2.66",
"autoprefixer": "^10.4.17",
"esbuild": "^0.20.2",
"next": "^14.1.0",
"postcss": "^8.4.38",
"postcss-nested": "^6.0.1",
"react": "^18.2.0",
"tailwindcss": "^3.4.4",
"tsup": "^8.0.2",
"chokidar-cli": "^3.0.0"
}
}