-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/dom": "^7.26.3",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"next": "^12.0.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-gtm-module": "^2.0.11",
"react-helmet": "^5.2.1",
"react-markdown": "^8.0.0",
"styled-components": "^5.3.3",
"typescript": "^4.5.5"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"eslint": "eslint . --ext .ts,.tsx",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "next lint"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@storybook/addon-actions": "^6.4.18",
"@storybook/addon-essentials": "^6.5.15",
"@storybook/addon-links": "^6.4.18",
"@storybook/builder-webpack5": "^6.4.18",
"@storybook/manager-webpack5": "^6.4.18",
"@storybook/react": "^6.4.20",
"@types/jest": "^26.0.15",
"@types/node": "^12.12.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-gtm-module": "^2.0.1",
"@types/react-helmet": "^5.0.14",
"@types/styled-components": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-jest": "^26.6.1",
"babel-loader": "^8.2.3",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^7.8.1",
"eslint-config-next": "^12.1.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.1",
"prettier": "^2.1.1",
"react-app-polyfill": "^1.0.1",
"ts-jest": "^26.4.3"
},
"resolutions": {
"webpack": "^5"
},
"engines": {
"node": "18.x"
}
}