-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.94 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
{
"name": "grit",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"e2e": "start-server-and-test dev http://localhost:3000 cypress:open",
"e2e:ci": "start-server-and-test dev http://localhost:3000 ci",
"ci": "cypress run",
"coverage": "nyc yarn run e2e",
"coverage:open": "open ./coverage/lcov-report/index.html",
"cypress:open": "cypress open",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage"
},
"dependencies": {
"@chakra-ui/icons": "1.0.5",
"@chakra-ui/react": "1.3.2",
"@emotion/react": "11.1.5",
"@emotion/styled": "11.1.5",
"@testing-library/dom": "7.29.4",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.5",
"@testing-library/user-event": "12.6.3",
"@types/jest": "26.0.20",
"@types/node": "^14.14.25",
"@types/react": "17.0.1",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-jest": "26.6.3",
"babel-plugin-istanbul": "^6.0.0",
"eslint": "^7.19.0",
"eslint-plugin-react": "^7.22.0",
"framer-motion": "3.3.0",
"husky": "4.3.8",
"jest": "26.6.3",
"jest-dom": "4.0.0",
"next": "10.0.6",
"prettier": "^2.2.1",
"pretty-quick": "3.1.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-icons": "^4.2.0",
"typescript": "4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"volta": {
"node": "14.15.3",
"yarn": "1.22.10"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.2",
"check-code-coverage": "^1.10.0",
"cypress": "^6.4.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react-hooks": "^4.2.0",
"nyc": "^15.1.0",
"start-server-and-test": "^1.12.0"
}
}