-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.89 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": "app",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"dev": "next -p 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --verbose --testPathPattern=lib/tests/home",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:headless"
},
"keywords": [],
"author": "",
"license": "",
"dependencies": {
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.10.4",
"@material-ui/core": "^4.12.4",
"@mui/icons-material": "^5.10.3",
"@mui/material": "^5.10.3",
"axios": "^0.27.2",
"next": "^11.1.2",
"overmind": "^28.0.1",
"overmind-react": "^29.0.1",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-infinite-scroll-component": "^6.1.0",
"react-scroll": "^1.8.7"
},
"devDependencies": {
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.0.0",
"@types/node": "^16.7.10",
"@types/ramda": "^0.28.15",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-scroll": "^1.8.4",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"cypress": "^3.1.5",
"eslint": "^7.32.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.4.2"
},
"prettier": {
"semi": false,
"trailingComma": "all",
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"jsxSingleQuote": true
}
}