-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 3.4 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "techstories_ci_testvisibility_workshop",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "NODE_OPTIONS='--require dd-trace/init' next dev",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "NODE_OPTIONS='--require dd-trace/init' next start",
"db-create": "prisma db push --schema=prisma/schema.prisma",
"db-seed": "NODE_ENV=development prisma db seed",
"db-prep": "yarn db-create && yarn db-seed && yarn postinstall",
"test": "NODE_OPTIONS=\"--max-old-space-size=12288 ${NODE_OPTIONS:-}\" jest",
"test:watch": "jest --watch",
"test:ci": "NODE_OPTIONS=\"--max-old-space-size=12288 ${NODE_OPTIONS:-}\" jest --ci --detectOpenHandles --coverage --collectCoverageFrom=src/**/*.{ts,tsx}",
"e2e": "cypress open --e2e",
"e2e:headless": "start-server-and-test 'yarn dev' 3000 'cypress run --e2e --browser chromium --headless'",
"component": "cypress open --component",
"component:headless": "cypress run --component",
"dd-test": "NODE_OPTIONS=\"-r dd-trace/ci/init\" DD_ENV=${DD_ENV} DD_SERVICE=${DD_SERVICE} DD_CIVISIBILITY_AGENTLESS_ENABLED=true DD_API_KEY=${DD_API_KEY} DD_APPLICATION_KEY=${DD_APP_KEY} yarn test:ci",
"dd-e2e": "NODE_OPTIONS=\"-r dd-trace/ci/init\" DD_ENV=${DD_ENV} DD_SERVICE=${DD_SERVICE} DD_CIVISIBILITY_AGENTLESS_ENABLED=true DD_API_KEY=${DD_API_KEY} DD_APPLICATION_KEY=${DD_APP_KEY} yarn e2e:headless"
},
"dependencies": {
"@datadog/browser-logs": "^5.0.0",
"@datadog/browser-rum": "^5.0.0",
"@headlessui/react": "^1.7.14",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^5.7.1",
"@tailwindcss/forms": "^0.5.3",
"@tanstack/react-query": "^4.28.0",
"@trpc/client": "^10.18.0",
"@trpc/next": "^10.18.0",
"@trpc/react-query": "^10.18.0",
"@trpc/server": "^10.18.0",
"@uiw/react-md-editor": "^3.23.1",
"cross-fetch": "^4.0.0",
"next": "^13.2.4",
"next-auth": "^4.21.0",
"next-remove-imports": "^1.0.11",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.7",
"remark-gfm": "^3.0.1",
"superjson": "1.12.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/eslint": "^8.21.3",
"@types/jest": "^29.5.2",
"@types/node": "^18.15.5",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.5.0",
"cypress": "12.3.0",
"dd-trace": "^4.0.0",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"isomorphic-fetch": "^3.0.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-fetch-mock": "^3.0.3",
"msw": "^1.2.2",
"postcss": "^8.4.21",
"prettier": "^2.8.6",
"prettier-plugin-tailwindcss": "^0.2.6",
"prisma": "^5.7.1",
"start-server-and-test": "1.15.2",
"tailwindcss": "^3.3.0",
"tsx": "^3.12.7",
"typescript": "^5.0.2"
},
"ct3aMetadata": {
"initVersion": "7.12.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}