This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.83 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
{
"name": "example-educational-app",
"version": "4.0.0",
"description": "An example app for interactive individual contents for the Schul-Cloud",
"main": "server/bin/server.js",
"scripts": {
"dev": "webpack-dev-server --config webpack/client.dev.js",
"build": "npm run build:client && npm run build:server",
"build:server": "cross-env NODE_ENV=production webpack --config webpack/server.prod.js --progress",
"build:client": "cross-env NODE_ENV=production webpack --config webpack/client.prod.js --progress",
"build-watch-server": "cross-env NODE_ENV=production webpack --watch --config webpack/server.prod.js",
"build-watch-client": "cross-env NODE_ENV=production webpack --watch --config webpack/client.prod.js",
"start": "cd server && nodemon bin/server.js",
"lint": "eslint --ext .jsx,.js ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schul-cloud/example-educational-app"
},
"keywords": [
"education"
],
"author": "Dominik Glandorf",
"license": "MIT",
"bugs": {
"url": "https://github.com/tahnik/react-express-webpack-babel/issues"
},
"homepage": "https://github.com/tahnik/react-express-webpack-babel#readme",
"dependencies": {
"body-parser": "^1.18.3",
"cross-env": "^5.1.4",
"ejs": "^2.5.9",
"express": "^4.16.3",
"express-promise-router": "^3.0.2",
"express-session": "^1.15.6",
"fs": "0.0.1-security",
"https": "^1.0.0",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^8.5.0",
"nodemon": "^2.0.4",
"npm": "^6.0.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-hot-loader": "^4.1.2",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"simple-oauth2": "^2.2.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3",
"webpack-node-externals": "^1.7.2"
},
"bundledDependencies": [
"cross-env",
"ejs",
"express",
"prop-types",
"react",
"react-dom",
"react-redux",
"react-router",
"react-router-dom",
"redux"
]
}