-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.16 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
{
"name": "glowykeys",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"startci": "next start -p 3001",
"lint": "next lint",
"test": "jest",
"lint:eslint": "eslint .",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cypress:open": "cypress open",
"cypress": "cypress run"
},
"dependencies": {
"@stripe/stripe-js": "^1.22.0",
"framer-motion": "^5.3.0",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"mongoose": "^6.0.14",
"next": "12.0.3",
"nextjs-progressbar": "0.0.13",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-modal": "^3.14.4",
"stripe": "^8.194.0",
"styled-components": "^5.3.3",
"styled-normalize": "^8.0.7",
"swr": "^1.1.0",
"tslib": "^2.1.0"
},
"devDependencies": {
"@testing-library/cypress": "^8.0.1",
"@testing-library/dom": "^8.11.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/moxy__next-router-scroll": "^2.2.1",
"@types/node": "16.11.6",
"@types/react": "17.0.34",
"@types/react-dom": "^17.0.9",
"@types/react-modal": "^3.13.1",
"@types/styled-components": "^5.1.15",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"axe-core": "^4.3.3",
"babel-plugin-inline-react-svg": "^2.0.1",
"cypress": "^8.7.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-next": "12.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.3.1",
"msw": "^0.36.3",
"nock": "^13.2.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "4.4.4"
}
}