-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "@midudev/react-rendering-strategies",
"version": "1.0.0",
"private": true,
"description": "React Rendering Strategies to Improve Performance (TTI) and keep bots compatibility",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"react rendering",
"dynamic rendering",
"static rendering",
"progressive hydration"
],
"author": "Miguel Ángel Durán (@midudev) [email protected]",
"license": "ISC",
"dependencies": {
"date-fns": "1.30.1",
"intersection-observer": "0.10.0",
"isomorphic-unfetch": "3.0.0",
"micro-cors": "0.1.1",
"next": "9.3.6",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-icons": "3.10.0"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@s-ui/lint": "3",
"np": "6.2.3"
},
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
}
}