-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
120 lines (120 loc) · 4.32 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
114
115
116
117
118
119
120
{
"name": "react-app-architecture",
"version": "1.0.0",
"description": "React.js Web Application Architecture - Learn to build a complete website for a blogging platform like Medium, FreeCodeCamp, MindOrks etc using React.js, Redux, MaterialUI, and Webpack. OpenSource project by AfterAcademy",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run serve",
"serve": "NODE_ENV=production node -r dotenv/config build/server/server.prod.js",
"devserver": "NODE_ENV=development node -r ./tools/babel-register.js src/server/server.dev.ts",
"watch": "npm run clean && npm run devserver",
"prebuild": "npm run clean",
"bundle": "npm run clean && NODE_ENV=production webpack -p --config ./webpack.config.js",
"build": "npm run bundle && npx babel src/ -d build/ --extensions '.js,.jsx,.ts,.tsx'",
"clean": "rimraf ./dist && mkdir dist && rimraf ./build && mkdir build",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose",
"eslint": "eslint . --ext .js,.ts,.jsx,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/afteracademy/react-app-architecture.git"
},
"author": "AfterAcademy",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/afteracademy/react-app-architecture/issues"
},
"homepage": "https://github.com/afteracademy/react-app-architecture#readme",
"dependencies": {
"@date-io/core": "^2.6.0",
"@date-io/moment": "^2.6.0",
"@material-ui/core": "^4.9.11",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.50",
"@material-ui/pickers": "^3.2.10",
"@mdi/js": "^5.1.45",
"axios": "^0.19.2",
"clsx": "^1.1.0",
"express": "^4.17.1",
"hint.css": "^2.6.0",
"jss": "^10.1.1",
"marked": "^1.0.0",
"material-ui-chip-input": "^1.1.0",
"moment": "^2.24.0",
"query-string": "^6.12.1",
"react": "^16.13.1",
"react-cookie": "^4.0.3",
"react-dom": "^16.13.1",
"react-join": "^1.1.4",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"serve-favicon": "^2.5.0",
"universal-cookie-express": "^4.0.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@hot-loader/react-dom": "^16.13.0",
"@types/express": "^4.17.6",
"@types/html-minifier": "^3.5.3",
"@types/ignore-styles": "^5.0.0",
"@types/jest": "^25.2.1",
"@types/marked": "^0.7.4",
"@types/material-ui": "^0.21.7",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.4",
"@types/serve-favicon": "^2.5.0",
"@types/webpack": "^4.41.12",
"@types/webpack-dev-middleware": "^3.7.0",
"@types/webpack-hot-middleware": "^2.25.2",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"autoprefixer": "^9.7.6",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"babel-plugin-module-resolver": "^4.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-babel": "^9.0.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-minifier": "^4.0.0",
"html-webpack-plugin": "^4.2.0",
"ignore-styles": "^5.0.1",
"jest": "^25.4.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.4",
"react-hot-loader": "^4.12.20",
"redux-devtools": "^3.5.0",
"rimraf": "^3.0.2",
"style-loader": "^1.1.4",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3",
"url-loader": "^4.1.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
}
}