-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.4 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
{
"name": "project-typescript-express-mongoose-jwt-react",
"version": "1.0.0",
"description": "Universal Typescript React/Redux application with JWT authentication.",
"author": "Sergei Samsonov <[email protected]> (https://github.com/osenvosem)",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production node build/server.bundle.js",
"start:dev": "NODE_ENV=development node scripts/start.js",
"build": "NODE_ENV=production node scripts/build.js",
"clean": "node scripts/clean.js"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.47",
"@babel/node": "^7.0.0-beta.47",
"@babel/polyfill": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"@babel/preset-react": "^7.0.0-beta.47",
"@babel/preset-stage-2": "^7.0.0-beta.47",
"@babel/preset-typescript": "^7.0.0-beta.47",
"@types/axios": "^0.14.0",
"@types/config": "^0.0.34",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.11.1",
"@types/jsonwebtoken": "^7.2.7",
"@types/lodash": "^4.14.109",
"@types/mongodb": "^3.0.18",
"@types/mongoose": "^5.0.14",
"@types/node": "^10.1.2",
"@types/passport": "^0.4.5",
"@types/passport-jwt": "^3.0.1",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"@types/react-redux": "^6.0.0",
"@types/react-router": "^4.0.25",
"@types/react-router-dom": "^4.2.6",
"@types/serve-favicon": "^2.2.30",
"@types/webpack": "^4.4.0",
"@types/webpack-env": "^1.13.6",
"@types/yup": "^0.24.4",
"babel-loader": "^8.0.0-beta.3",
"chalk": "^2.3.2",
"file-loader": "^1.1.11",
"nodemon": "^1.17.4",
"npm-run-all": "^4.1.3",
"react-dev-utils": "^5.0.1",
"rimraf": "^2.6.2",
"webpack": "^4.8.3",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"axios": "^0.18.0",
"config": "^1.30.0",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"formik": "^0.11.11",
"jsonwebtoken": "^8.2.1",
"mongoose": "^5.1.2",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"polished": "^1.9.2",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-hot-loader": "^4.2.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"serve-favicon": "^2.5.0",
"styled-components": "^3.2.5",
"yup": "^0.25.1"
}
}