-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.49 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.49 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "goalpost",
"version": "1.0.5",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start:dev": "node scripts/start-dev.js",
"lint": "next lint",
"themegen": "npx @chakra-ui/cli typegen ./src/components/ui/theme.ts",
"codegen": "graphql-codegen --config codegen.ts --watch",
"prepare": "husky install",
"test": "cross-env DOTENV_CONFIG_PATH=./.env.local jest",
"test:watch": "cross-env DOTENV_CONFIG_PATH=./.env.local jest --watchAll --detectOpenHandles",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'docs: updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'docs: updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'docs: updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags",
"init:db": "cross-env DOTENV_CONFIG_PATH=./.env.local node scripts/init-db.js"
},
"dependencies": {
"@apollo/client": "^3.12.11",
"@apollo/experimental-nextjs-app-support": "^0.11.5",
"@as-integrations/next": "^3.2.0",
"@chakra-ui/react": "^3.2.3",
"@emotion/react": "^11.13.3",
"@graphql-codegen/cli": "^5.0.3",
"@hookform/resolvers": "^3.9.1",
"@langchain/community": "^0.0.30",
"@langchain/core": "^0.1.48",
"@langchain/openai": "^0.0.11",
"@neo4j-nvl/react": "^0.3.6",
"@neo4j/graphql": "^6.2.3",
"@neo4j/graphql-ogm": "^5.9.1",
"bcryptjs": "^3.0.2",
"body-parser": "^1.20.3",
"concurrently": "^9.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"d3": "^7.9.0",
"d3-force": "^3.0.0",
"dotenv": "^16.4.7",
"execa": "^9.5.2",
"framer-motion": "^11.14.4",
"fs": "^0.0.1-security",
"graphql": "^16.10.0",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.16.0",
"graphql-yoga": "^5.10.8",
"husky": "^9.1.7",
"joi": "^17.13.3",
"jwt-decode": "^4.0.0",
"langchain": "^0.1.28",
"lint-staged": "^15.2.11",
"marked": "^15.0.5",
"neo4j-driver": "^5.28.1",
"nest-auth": "^0.0.1",
"next": "15.2.8",
"next-themes": "^0.3.0",
"path": "^0.12.7",
"prettier": "^3.4.2",
"prettier-eslint-cli": "^8.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"resend": "^4.5.1",
"tailwind-merge": "^2.5.5",
"url": "^0.11.4",
"winston": "^3.17.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@parcel/watcher": "^2.5.0",
"@types/cors": "^2.8.17",
"@types/d3": "^7.4.3",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^18.3.12",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.2",
"generate-changelog": "^1.8.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix ."
]
},
"eslintIgnore": [
"resolvers.js",
"*.test.js",
"*.test.jsx"
],
"repository": {
"type": "git",
"url": "https://github.com/GoalPost-Earth/GoalPost"
},
"license": "Apache-2.0"
}