-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.39 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
{
"name": "next-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint './src/**/*.{ts,tsx}' --max-warnings 10",
"stories": "start-storybook -p 6006 -c .storybook"
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"@tryghost/content-api": "^1.3.5",
"@types/lodash": "^4.14.149",
"@types/next-redux-saga": "^3.0.2",
"@types/react-redux": "^7.1.5",
"@types/redux": "^3.6.0",
"@types/styled-components": "^4.1.22",
"algoliasearch": "^3.35.1",
"eslint": "^6.8.0",
"framer-motion": "^1.8.3",
"immer": "^5.1.0",
"lodash": "^4.17.19",
"next": "^9.5.0",
"next-fonts": "^1.0.3",
"next-offline": "^5.0.0",
"next-redux-saga": "^4.1.2",
"next-redux-wrapper": "^4.0.1",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-instantsearch-dom": "^6.1.0",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-observable": "^1.2.0",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"styled-breakpoints": "^7.2.0",
"styled-components": "^4.4.1",
"styled-icons": "^9.3.0",
"styled-normalize": "^8.0.6",
"typesafe-actions": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@storybook/react": "^5.2.5",
"@types/node": "^12.12.6",
"@types/react": "^16.9.11",
"@types/storybook__react": "^4.0.2",
"@types/tryghost__content-api": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-preset-react-app": "^9.0.2",
"eslint-config-prettier": "^6.9.0",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "^5.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"fork-ts-checker-webpack-plugin": "^3.0.1",
"prettier": "^1.19.1",
"serialize-javascript": "^2.1.2",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
}
}