-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.45 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "p-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit --project cypress/tsconfig.json",
"format": "prettier --write .",
"lint": "eslint src --ext ts --ext tsx",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook",
"storyshots": "jest --config ./jest.storyshots.config.js",
"update-storyshots": "jest --config ./jest.storyshots.config.js --updateSnapshot",
"screenshot": "storycap --serverCmd \"start-storybook -p 6006 -s ./public\" http://localhost:6006",
"regression": "reg-suit run",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@hookform/resolvers": "1.3.2",
"@reduxjs/toolkit": "1.5.0",
"classnames": "2.2.6",
"dayjs": "1.10.2",
"formik": "2.2.6",
"next": "10.0.3",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "6.14.0",
"react-redux": "7.2.2",
"redux-persist": "6.0.0",
"sass": "1.29.0",
"yup": "0.32.8"
},
"devDependencies": {
"@storybook/addon-storyshots": "6.1.9",
"@storybook/react": "6.1.9",
"@testing-library/react": "11.2.2",
"@types/jest": "26.0.16",
"@types/node": "14.14.10",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/react-redux": "7.1.15",
"@types/yup": "0.29.11",
"@typescript-eslint/eslint-plugin": "4.9.0",
"@typescript-eslint/parser": "4.9.0",
"babel-jest": "26.6.3",
"css-loader": "5.0.1",
"cypress": "6.2.1",
"eslint": "7.14.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-react": "7.21.5",
"husky": "4.3.0",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"jest-watch-typeahead": "0.6.1",
"lint-staged": "10.5.2",
"prettier": "2.2.1",
"reg-keygen-git-hash-plugin": "^0.10.9",
"reg-notify-github-plugin": "^0.10.9",
"reg-notify-slack-plugin": "0.10.9",
"reg-publish-s3-plugin": "^0.10.9",
"reg-suit": "0.10.9",
"sass-loader": "10.1.0",
"storycap": "3.0.3",
"style-loader": "2.0.0",
"typescript": "4.1.2"
}
}