-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.95 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"lint": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx .",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(json|[jt]sx?|html)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"check-types": "tsc",
"validate": "npm-run-all --parallel check-types check-format lint build"
},
"dependencies": {
"formik": "^2.2.5",
"next": "^10.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-error-boundary": "^3.0.2",
"react-query": "^2.26.3"
},
"devDependencies": {
"@tailwindcss/ui": "^0.7.2",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.2.2",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"autoprefixer": "^10.0.4",
"babel-jest": "^26.6.3",
"eslint": "^7.14.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.3.0",
"eslint-plugin-jest-formatting": "^2.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"is-ci-cli": "^2.1.2",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.5.2",
"msw": "^0.22.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.1.10",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"tailwindcss": "^2.0.1",
"typescript": "^3.9.7"
}
}