-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "@stackframe/auth-proxy",
"version": "0.0.8",
"type": "module",
"scripts": {
"build:next": "next build",
"start:next": "next start",
"build:tsc": "tsup ./main.ts --target node16 --format cjs --out-dir dist",
"start:tsc": "node dist/main.cjs",
"build": "npm run build:next && npm run build:tsc",
"start": "npm run start:tsc",
"lint": "next lint"
},
"files": [
"dist",
"app",
"stack.tsx",
"package.json",
"next.config.mjs",
"postcss.config.mjs",
"tailwind.config.ts",
"tsconfig.json"
],
"dependencies": {
"@stackframe/stack": "^2.6.7",
"commander": "^12.1.0",
"http-proxy": "^1.18.1",
"next": "14.2.7",
"react": "^18",
"react-dom": "^18",
"url-pattern": "^1.0.3"
},
"devDependencies": {
"@types/command-line-args": "^5.2.3",
"@types/http-proxy": "^1.17.15",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsup": "^8.3.0",
"tsx": "^4.7.2",
"typescript": "^5"
}
}