-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.11 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
{
"name": "tick-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless",
"test": "jest --env=jsdom",
"test:watch": "jest --watch --env=jsdom",
"test:coverage": "jest --coverage",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json|ts|tsx)\"",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"validate": "yarn check-types && yarn check-format && yarn lint && yarn test && yarn build && yarn e2e:headless",
"postinstall": "husky install"
},
"dependencies": {
"@apollo/client": "^3.4.5",
"@auth0/nextjs-auth0": "^1.5.0",
"@headlessui/react": "^1.4.1",
"@xstate/react": "^1.6.1",
"axios": "^0.21.4",
"clsx": "^1.1.1",
"graphql": "^15.5.1",
"next": "^11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-toast": "^2.1.1",
"xstate": "^4.25.0"
},
"devDependencies": {
"@testing-library/cypress": "^8.0.1",
"@testing-library/dom": "^8.3.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/react": "17.0.16",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"autoprefixer": "^10.3.1",
"babel-jest": "^27.1.1",
"cypress": "^8.4.1",
"eslint": "7.32.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"husky": "^7.0.2",
"jest": "^27.1.1",
"msw": "^0.35.0",
"postcss": "^8.3.6",
"prettier": "^2.4.0",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^2.2.7",
"typescript": "4.3.5",
"whatwg-fetch": "^3.6.2"
},
"msw": {
"workerDirectory": "public"
}
}