forked from sealninja/react-ssr-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.44 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.44 KB
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
{
"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 --ignore-path .gitignore *.js components/**/*.jsx",
"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",
"dependencies": {
"@babel/core": "^7.19.1",
"@babel/register": "^7.18.6",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"date-fns": "^2.29.3",
"express": "^4.18.1",
"mobile-detect": "^1.4.5",
"prop-types": "^15.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-grid-system": "^8.1.6",
"react-i18nify": "^4.6.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.7",
"eslint-plugin-react-hooks": "^4.6.0"
}
}