-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "users-list",
"version": "1.0.0",
"private": true,
"description": "Users list app",
"main": "index.js",
"scripts": {
"build": "next build && next export",
"checks": "prettier --check . && npm run lint && npm run types",
"dev": "next dev",
"lint": "eslint src",
"serve": "serve out",
"start": "next start",
"test": "jest",
"types": "tsc --noEmit"
},
"dependencies": {
"@apollo/client": "^3.2.9",
"@aws-amplify/cli": "^4.36.0",
"@emotion/jest": "^11.1.0",
"@emotion/react": "^11.1.1",
"@emotion/styled": "^11.0.0",
"@sentry/browser": "^5.27.6",
"@testing-library/react": "^11.2.2",
"@types/mapbox-gl": "^1.12.8",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"aws-amplify": "^3.3.10",
"aws-appsync": "^4.0.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"expect-playwright": "^0.2.6",
"graphql": "^15.4.0",
"jest": "^26.6.3",
"jest-playwright-preset": "^1.4.1",
"jest-screenshot": "^0.3.2",
"mapbox-gl": "^1.13.0",
"msw": "^0.22.3",
"next": "^10.0.0",
"playwright-chromium": "^1.6.2",
"prettier": "^2.2.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"serve": "^11.3.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"author": "gztomas",
"license": "ISC"
}