-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 3.08 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
91
92
93
94
95
96
97
98
99
{
"name": "skillz",
"version": "0.1.0",
"private": true,
"engines": {
"node": "16.13.1",
"npm": "8.1.2"
},
"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 *.json *.js \"src/**/*.{js,jsx,ts,tsx}\" \".circleci/config.yml\"",
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write",
"lint": "next lint --max-warnings=0",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest",
"test:integration": "npm run cypress:run",
"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": "^13.2.4",
"next-pwa": "^5.6.0",
"object-path": "^0.11.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-joyride": "^2.5.5",
"react-responsive": "9.0.2",
"recharts": "^2.8.0",
"use-debounce": "9.0.4",
"yarn": "^1.22.19"
},
"devDependencies": {
"@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": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "18.13.0",
"@types/object-path": "0.11.1",
"@types/react": "18.2.21",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.59.11",
"autoprefixer": "^10.4.13",
"cypress": "^12.7.0",
"dotenv": "^16.0.3",
"eslint": "8.48.0",
"eslint-config-next": "13.4.4",
"eslint-config-prettier": "^8.8.0",
"hasura-cli": "^2.33.4",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.4.1",
"json-sql": "^0.5.0",
"postcss": "^8.4.31",
"prettier": "2.8.8",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.5.4"
},
"overrides": {
"underscore": ">=1.12.1"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}