-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "portfolio",
"description": "A redesign of my portfolio website.",
"version": "3.2.1",
"author": {
"name": "Jacob Herper",
"email": "[email protected]",
"url": "https://herper.io/"
},
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/jakeherp/portfolio"
},
"scripts": {
"build": "next build",
"check": "tsc && jest --coverage && npm run build && npm run e2e::ci",
"component:create": "hygen component new",
"dev": "next dev",
"lint": "jest --selectProjects lint",
"qa:lint": "eslint --ignore-path .gitignore .",
"qa:prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|jsx|json|ts|tsx)\"",
"qa": "npm run qa::lint",
"start": "next start",
"storybook:build": "build-storybook",
"storybook": "start-storybook -p 6006",
"test:ci": "jest --ci",
"test:coverage": "jest --selectProjects test --coverage",
"test:watch": "jest --selectProjects test --watch ",
"test": "jest --selectProjects test"
},
"dependencies": {
"@babel/runtime": "^7.14.6",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"@svgr/webpack": "^5.5.0",
"@testing-library/react-hooks": "^7.0.0",
"babel-polyfill": "^6.26.0",
"classnames": "^2.3.1",
"date-fns": "^2.22.1",
"formik": "^2.2.9",
"gray-matter": "^4.0.3",
"lodash.orderby": "^4.6.0",
"markdown-to-jsx": "^7.1.3",
"next": "11.0.1-canary.5",
"next-absolute-url": "^1.2.2",
"next-mdx-remote": "^3.0.2",
"next-redux-wrapper": "^7.0.2",
"nprogress": "^0.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.4",
"react-typed": "^1.2.0",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"styled-components": "^5.3.0",
"typescript": "^4.3.4",
"uniqid": "^5.3.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@testing-library/dom": "^7.31.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.23",
"@types/lodash.orderby": "^4.6.6",
"@types/nprogress": "^0.2.0",
"@types/react-redux": "^7.1.16",
"@types/styled-components": "^5.1.10",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"core-js": "^3.14.0",
"eslint": "^7.29.0",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"hygen": "^6.1.0",
"jest": "^27.0.4",
"jest-runner-eslint": "^0.10.1",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^0.6.4",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"start-server-and-test": "^1.12.5",
"tsconfig-paths-webpack-plugin": "^3.5.1"
},
"jest-runner-eslint": {
"cliOptions": {
"ignorePath": "./.gitignore"
}
},
"lint-staged": {
"*.+(js|ts|tsx)": [
"eslint"
],
"**.*.+(js|json|ts|tsx)": [
"prettier --write"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "tsc"
}
},
"engines": {
"npm": ">=6.14.0 <8",
"node": ">=14.16.0 <15"
}
}