-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
{
"name": "react-ssr-example",
"version": "1.1.0",
"description": "Example React Server-Side Rendering (SSR) application using react-grid-system and react-i18nify.",
"main": "index.js",
"scripts": {
"start": "node run.js",
"lint": "eslint *.js components/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Sealninja",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sealninja/react-ssr-example.git"
},
"bugs": {
"url": "https://github.com/sealninja/react-ssr-example/issues"
},
"homepage": "https://github.com/sealninja/react-ssr-example",
"browserslist": "> 0.5%, last 2 versions, not op_mini all, not dead",
"dependencies": {
"@babel/core": "7.26.7",
"@babel/register": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"babelify": "10.0.0",
"browserify": "17.0.1",
"dayjs": "1.11.13",
"express": "4.21.2",
"mobile-detect": "1.4.5",
"prop-types": "15.8.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-grid-system": "8.2.1",
"react-i18nify": "6.1.3"
},
"devDependencies": {
"@babel/eslint-parser": "7.26.5",
"eslint": "9.19.0",
"@eslint/compat": "1.2.5",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.18.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "4.6.2",
"prettier": "3.4.2"
}
}