-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.89 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
{
"name": "node-express",
"version": "1.22.19",
"description": "Training: Initial Project",
"author": "Pamela Gilmour",
"private": true,
"license": "unlicensed",
"scripts": {
"build:csr": "webpack --mode=development --config webpack/webpack.client.config.js",
"watch:csr": "webpack --mode=development --watch --config webpack/webpack.client.config.js",
"start:csr": "node servers/server.csr.js",
"eslint": "eslint -c ./.eslintrc.json api react-app servers webpack",
"build:ssr": "webpack --config webpack/webpack.server.config.js",
"watch:ssr": "webpack --mode=development --watch --config webpack/webpack.server.config.js",
"start:ssr": "node dist/server.js"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-transform-modules-commonjs": "^7.21.5",
"@babel/plugin-transform-react-inline-elements": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.9",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"babel-loader": "^9.1.2",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.21.0",
"eslint-plugin-react": "^7.30.1",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"source-map-loader": "^4.0.1",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.5",
"cors": "^2.8.5",
"css-loader": "^6.7.1",
"dotenv": "^16.1.1",
"express": "^4.18.1",
"mini-css-extract-plugin": "^2.7.2",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.8.2",
"redux": "^4.2.0",
"sass": "^1.54.9",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"webpack-node-externals": "^3.0.0"
},
"repository": "[email protected]:KQED/frontend-training-pgilmour.git"
}