-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.69 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
{
"name": "rummagene",
"version": "0.3.14",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"npm run generate -- --watch ./src/graphql/**/*.graphql\"",
"build": "concurrently -k -s first \"next build\" \"npm run start:graphql\"",
"start:graphql": "ts-node src/cli/graphql.ts",
"start": "next start",
"lint": "next lint",
"generate": "graphql-codegen --config graphql.config.yml",
"version": "npm run build && ts-node src/cli/version-compose.ts && docker-compose build rummagene-app",
"postversion": "docker-compose push rummagene-app"
},
"dependencies": {
"@apollo/client": "^3.8.0-rc.2",
"@apollo/experimental-nextjs-app-support": "^0.8.0",
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"@types/node": "20.4.6",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"classnames": "^2.3.2",
"dotenv": "^16.3.1",
"eslint": "8.46.0",
"eslint-config-next": "13.4.12",
"graphql": "^15.8.0",
"next": "^13.5.6",
"postcss": "^8.4.35",
"postgraphile": "^4.13.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^2.2.1",
"tailwindcss": "3.3.3",
"typescript": "5.1.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "^5.0.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@parcel/watcher": "^2.2.0",
"@types/uuid": "^9.0.2",
"concurrently": "^8.2.0",
"daisyui": "^3.5.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0"
}
}