-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "next-medium-blog-boilerplate",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"setup:contentful": "node bin/setup/contentful.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint:fix": "yarn lint --fix",
"lint": "eslint '{pages,components,config,core}/**/*.{js,ts,tsx}' --quiet"
},
"dependencies": {
"bootstrap": "^4.4.1",
"contentful": "^7.14.2",
"dayjs": "^1.8.24",
"next": "^9.5.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-markdown": "^4.3.1",
"reading-time": "^1.2.0"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"chalk": "^4.0.0",
"contentful-import": "^7.7.8",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"inquirer": "^7.1.0",
"jest": "^25.5.4",
"prettier": "^2.0.5",
"sass": "^1.26.3",
"ts-jest": "^25.5.0",
"typescript": "^3.8.3"
}
}