-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.39 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "bunny-web",
"version": "0.6.6",
"description": "",
"author": "Ruiwen Zeng [email protected]",
"private": true,
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"start:prod": "next start",
"test": "vitest --run",
"test:watch": "vitest",
"gen:ts-proto": "grpc_tools_node_protoc --plugin=protoc-gen-ts_proto=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=./shared/grpc/generated --ts_proto_opt=outputServices=nice-grpc,outputServices=generic-definitions,useExactTypes=false --proto_path=./shared/grpc/proto shared/grpc/proto/*.proto ",
"lint": "next lint",
"format": "prettier --write \"app/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\"",
"check": "tsc --noEmit",
"test:e2e": "start-server-and-test dev http://localhost:3000 \"cypress open --e2e\"",
"test:e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\"",
"component": "cypress open --component",
"component:headless": "cypress run --component"
},
"dependencies": {
"@bufbuild/protobuf": "^2.1.0",
"@reduxjs/toolkit": "^2.2.7",
"@tanstack/react-query": "^5.56.2",
"bunny-common": "^0.6.6",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"ky": "^1.7.2",
"next": "latest",
"next-auth": "^4.24.7",
"next-redux-wrapper": "^8.1.0",
"next-themes": "^0.3.0",
"nice-grpc": "^2.1.10",
"nice-grpc-common": "^2.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"redux": "^5.0.1",
"redux-saga": "^1.3.0",
"sass": "^1.77.8",
"server-only": "^0.0.1"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.56.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "20.10.4",
"@types/react": "^18.3.4",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"classnames": "^2.5.1",
"cypress": "^13.14.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.7",
"grpc-tools": "^1.12.4",
"jsdom": "^25.0.0",
"prettier": "^3.3.3",
"start-server-and-test": "^2.0.5",
"tailwindcss": "^3.4.10",
"ts-proto": "^2.2.0",
"typescript": "^5.5.0",
"vitest": "^2.0.5"
}
}