-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.79 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
{
"name": "portfolio-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"type": "contentful-typescript-codegen --output ./src/types/generated/contentful.d.ts",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^14.1.2",
"@contentful/rich-text-types": "^14.1.2",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"contentful": "^8.1.6",
"contentful-management": "^7.3.0",
"contentful-typescript-codegen": "^3.2.1",
"dotenv": "^8.2.0",
"eslint-plugin-standard": "^5.0.0",
"gray-matter": "^4.0.2",
"highlight.js": "^10.4.1",
"html-react-parser": "^1.1.1",
"i18next": "^19.8.4",
"nanoid": "^3.1.20",
"next": "^10.0.7",
"react": "17.0.1",
"react-audio-player": "^0.14.0",
"react-collapse": "^5.1.0",
"react-dom": "17.0.1",
"react-hook-form": "^6.14.2",
"react-i18next": "^11.8.5",
"react-icons": "^4.1.0",
"react-player": "^2.8.1",
"react-responsive-embed": "^2.1.0",
"remarkable": "^2.0.1",
"slugify": "^1.4.6",
"storybook-addon-next-router": "^2.0.3",
"styled-components": "^5.2.1",
"styled-normalize": "^8.0.7",
"styled-reset": "^4.3.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"uuid": "^8.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@storybook/addon-actions": "^6.1.11",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-links": "^6.1.11",
"@storybook/react": "^6.1.11",
"@types/highlight.js": "^10.1.0",
"@types/node": "^14.14.19",
"@types/react": "^17.0.0",
"@types/react-collapse": "^5.0.0",
"@types/styled-components": "^5.1.4",
"@types/uuid": "^8.3.0",
"@typescript-eslint/parser": "^4.11.1",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.2.0",
"typescript": "^4.1.2"
}
}