-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 3.18 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": "skillz",
"version": "0.1.0",
"private": true,
"engines": {
"node": "22"
},
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:local": "npm run generate:local && npm run build",
"build:prod": "npm run generate && npm run build",
"build:e2e": "npm run generate:local && NODE_ENV=test next build",
"start": "next start -p 8080",
"start:local": "next start -p 3000",
"start:e2e": "next start -p 3000",
"prettier": "prettier --check '**/*.{json,js,jsx,ts,tsx,mjs}'",
"prettier:write": "npm run prettier -- --write",
"lint": "next lint",
"lint:fix": "npm run lint -- --fix",
"test:unit": "jest",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"hasura": "hasura --project ./hasura",
"seeds:generate": "ts-node ./hasura/local_seeds/seedscript.ts",
"seeds:apply": "npm run hasura seeds apply --file ./hasura/local_seeds/seeds.sql",
"generate": "graphql-codegen --config codegen.js",
"generate:local": "graphql-codegen -r dotenv/config --config codegen.js dotenv_config_path=.env"
},
"dependencies": {
"@apollo/client": "^3.8.4",
"@auth0/auth0-react": "2.2.2",
"@emotion/react": "^11.10.8",
"@emotion/styled": "^11.10.6",
"@faker-js/faker": "^7.6.0",
"@mui/material": "^5.13.6",
"await-of": "3.1.1",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"graphql": "16.8.1",
"jwt-decode": "^3.1.2",
"next": "15.1.2",
"next-pwa": "^5.6.0",
"object-path": "^0.11.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^4.11.0",
"react-joyride": "^2.5.5",
"react-responsive": "9.0.2",
"recharts": "^2.13.2",
"use-debounce": "9.0.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@graphql-codegen/cli": "^3.2.1",
"@graphql-codegen/introspection": "^3.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^3.0.0",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@testing-library/cypress": "^10.0.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.68",
"@types/object-path": "0.11.1",
"@types/react": "19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"autoprefixer": "^10.4.13",
"cypress": "^13.17.0",
"dotenv": "^16.0.3",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.2",
"hasura-cli": "2.36.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-sql": "^0.5.0",
"postcss": "^8.4.31",
"prettier": "3.4.2",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"overrides": {
"underscore": ">=1.12.1",
"@types/react": "19.0.2"
}
}