-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.08 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
81
{
"name": "create-copilot-app",
"description": "A custom app starter kit for Copilot",
"version": "2.1.0",
"keywords": [
"nextjs",
"nodejs"
],
"bin": {
"create-copilot-app": "./bin/cli.js"
},
"repository": {
"url": "https://github.com/pagevamp/copilot-custom-app-starter-kit"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"vercel-build": "prisma generate && next build",
"prepare": "husky install",
"eslint": "eslint './src/**/*.{ts,tsx}'",
"lint:check": "eslint \"{src,test}/**/*.{ts,tsx}\"",
"lint:fix": "npm run lint:check -- --fix",
"prettier:check": "prettier --check \"{src,test}/**/*.{ts,tsx}\"",
"prettier:fix": "prettier --write .",
"lint-staged": "npx lint-staged",
"postinstall": "prisma generate",
"test": "jest --runInBand"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/material": "^5.15.17",
"@prisma/client": "^5.13.0",
"@slack/web-api": "^7.0.4",
"@vercel/postgres": "^0.8.0",
"bottleneck": "^2.19.5",
"copilot-node-sdk": "^2.3.0",
"formik": "^2.4.6",
"http-status": "^1.7.4",
"next": "^14.2.3",
"prisma": "^5.12.0",
"react": "^18",
"react-dom": "^18",
"zod": "^3.23.7"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.5",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/superagent": "^8.1.6",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"postcss": "^8",
"prettier": "^3.1.1",
"superagent": "^9.0.1",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.1.2",
"typescript": "^5"
},
"overrides": {
"braces": "3.0.3"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"yarn lint:fix",
"yarn prettier:fix"
]
}
}