-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.77 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-server-boilerplate",
"fileName": "react-server-boilerplate",
"description": "node-react server setup",
"version": "0.0.0",
"main": "server.js",
"author": "Ryan Walker <[email protected]>",
"license": "UNLICENSED",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/RyanPWalker/react-server-boilerplate.git"
},
"scripts": {
"bounce": "rimraf /node_modules && yarn",
"build": "rimraf dist && NODE_ENV=production webpack --mode=production && copyfiles -f dist/*.min.js static/",
"build:dev": "NODE_ENV=development webpack --mode=development --progress",
"dev": "yarn build:dev --watch --mode=development & nodemon --delay 1 --watch dist --exec 'DOMO_ENVIRONMENT=local yarn start:dev'",
"jest": "clear && jest --coverage",
"lint": "eslint ./src --fix",
"start": "NODE_ENV=production node dist/server",
"start:dev": "node dist/server",
"test": "yarn lint && jest"
},
"keywords": [
"Ryan Preston Walker",
"Ryan Walker",
"FED",
"Front End Developer",
"React",
"JavaScript",
"Web Developer"
],
"config": {
"startupFile": "dist/server.js",
"port": 80,
"devPort": 3000
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "9.1.0",
"redux": "^5.0.1",
"redux-promise-middleware": "^6.1.2",
"redux-thunk": "^3.1.0",
"reselect": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^29.7.0",
"babel-loader": "9.1.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babelify": "10.0.0",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^7.0.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"csso-webpack-plugin": "^2.0.0-beta.3",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.16.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"glob": "^10.3.12",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"incstr": "^1.2.3",
"jest": "^29.7.0",
"less": "4.2.0",
"less-loader": "^12.2.0",
"mini-css-extract-plugin": "^2.8.1",
"nodemon": "^3.1.0",
"prop-types": "^15.7.2",
"purgecss": "^6.0.0",
"purgecss-webpack-plugin": "^6.0.0",
"rimraf": "^5.0.5",
"style-loader": "3.3.4",
"terser-webpack-plugin": "^5.3.10",
"webpack": "5.91.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-bundle-size-analyzer": "^3.1.0",
"webpack-cli": "5.1.4",
"webpack-common-shake": "^2.1.0",
"webpack-dev-server": "5.0.4",
"webpack-node-externals": "^3.0.0"
},
"nodemonConfig": {
"delay": "100"
},
"jest": {
"globals": {}
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint"
}
}
}