-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.84 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.84 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "base-react-node-docker",
"author": "Rogelio Delgado <rogelio@rogfed.ninja>",
"license": "MIT",
"private": true,
"engines": {
"yarn": "3.0.x",
"node": "14.18.x"
},
"dependencies": {
"express": "^4.17.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^6.0.2"
},
"devDependencies": {
"@babel/cli": "^7.12.16",
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@testing-library/react": "^12.1.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/mini-css-extract-plugin": "^2.5.1",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@types/sass": "^1.43.1",
"babel-jest": "^27.4.2",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.5.1",
"eslint": "^8.4.1",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-react": "^7.22.0",
"html-loader": "^3.0.1",
"html-webpack-plugin": "^5.1.0",
"jest": "^27.4.3",
"mini-css-extract-plugin": "^2.4.5",
"prettier": "^2.5.1",
"sass": "^1.32.7",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
},
"scripts": {
"start:dev": "webpack serve --config webpack/webpack.dev.js",
"dev:buildImage": "docker build . -t stats-preview-card-component-image",
"dev:docker": "docker run -p 3000:3000 -d -v $(pwd)/src:/app/src:ro stats-preview-card-component-image",
"build": "webpack --config webpack/webpack.prod.js",
"test:dev": "jest --config=jest.config.json --watch",
"test": "jest --config=jest.config.json"
}
}