This repository has been archived by the owner on May 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
79 lines (79 loc) · 2.76 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
79
{
"name": "oce-react-blog-sample",
"version": "23.3.1",
"description": "A simple blog site built using React and Oracle Content Management",
"author": "Oracle America, Inc.",
"license": "UPL-1.0",
"repository": {
"type": "git",
"url": "https://github.com/oracle-samples/oce-react-blog-sample.git"
},
"keywords": [
"oracle-content-experience",
"oracle-content-management",
"oracle-cloud",
"cms",
"javascript",
"react",
"reactjs",
"headless-cms",
"headless-sample"
],
"scripts": {
"build": "npm-run-all --parallel build:*",
"build:server-bundle": "rimraf dist && webpack --config webpack.server.config.js --progress",
"build:client-bundle": "rimraf public && webpack --config webpack.client.config.js --progress",
"buildPath": "npm-run-all --parallel buildPath:*",
"buildPath:server-bundle": "cross-env BASE_URL=/samples/oce-react-blog-sample webpack --config webpack.server.config.js --progress",
"buildPath:client-bundle": "cross-env BASE_URL=/samples/oce-react-blog-sample webpack --config webpack.client.config.js --progress",
"dev": "npm-run-all --parallel dev:*",
"dev:server-bundle": "webpack --config webpack.server.config.js --watch --progress",
"dev:client-bundle": "webpack --config webpack.client.config.js --watch --progress",
"dev:run-server": "nodemon --watch build --exec node dist/server-bundle.js",
"start": "node dist/server-bundle.js",
"lint": "eslint ./src --ext .js,.jsx"
},
"dependencies": {
"@oracle/content-management-sdk": "^1.4.2",
"core-js": "~3.26.1",
"cross-fetch": "~3.1.5",
"dotenv": "~16.0.3",
"express": "~4.18.2",
"https-proxy-agent": "~5.0.1",
"node-fetch": "~3.3.0",
"prop-types": "~15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router": "^6.4.5",
"react-router-dom": "^6.4.5",
"react-router-prop-types": "^1.0.5",
"regenerator-runtime": "~0.13.11",
"serialize-javascript": "~6.0.0",
"xss": "~1.0.14"
},
"devDependencies": {
"@babel/cli": "~7.19.3",
"@babel/core": "~7.20.5",
"@babel/preset-env": "~7.20.2",
"@babel/preset-react": "~7.18.6",
"babel-loader": "~9.1.0",
"copy-webpack-plugin": "~11.0.0",
"cross-env": "~7.0.3",
"css-loader": "~6.7.3",
"eslint": "~8.29.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.11",
"eslint-plugin-react-hooks": "~4.6.0",
"nodemon": "~2.0.20",
"npm-run-all": "^4.1.5",
"terser-webpack-plugin": "~5.3.6",
"webpack": "~5.76.0",
"webpack-cli": "~5.0.1",
"webpack-dev-server": "~4.11.1",
"webpack-merge": "~5.8.0",
"webpack-node-externals": "~3.0.0"
}
}