-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.59 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
{
"name": "vidflow",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --mode development --hot --host 0.0.0.0",
"ssr-start": "node ./dist/server",
"ssr-build": "cross-env NODE_ENV=production webpack --mode production --config webpack.config.ssr.js",
"clear": "rimraf ./dist",
"build": "npm run clear && cross-env NODE_ENV=production webpack --mode production --config webpack.config.prod.js",
"build-production": "npm run clear && cross-env NODE_ENV=production webpack --mode production --config webpack.config.prod.js",
"build-staging": "npm run clear && cross-env NODE_ENV=staging webpack --mode production --config webpack.config.prod.js",
"ssr-build-staging": "cross-env NODE_ENV=staging webpack --mode production --config webpack.config.ssr.js",
"ssr-universal-staging": "npm run build-staging && npm run ssr-build-staging",
"ssr-build-production": "cross-env NODE_ENV=production webpack --mode production --config webpack.config.ssr.js",
"ssr-universal-production": "npm run build-production && npm run ssr-build-production"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=8.4.0",
"npm": ">=5"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"accoutrement-color": "^2.3.1",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.4",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"inuit-flexgrid": "^0.4.0",
"inuitcss": "^6.0.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.3",
"path": "^0.12.7",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.3.11",
"redux-logger": "^3.0.6",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webapp-webpack-plugin": "^2.4.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"axios": "^0.18.0",
"browser-detect": "^0.2.28",
"draft-js": "^0.10.5",
"eslint": "^5.8.0",
"express": "^4.16.4",
"get-user-locale": "^1.1.1",
"guess-timezone": "^0.2.1",
"is-mobile": "^2.0.0",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"moment-duration-format": "^2.2.2",
"query-string": "^6.2.0",
"react-avatar-editor": "^11.0.4",
"react-beautiful-dnd": "^10.0.2",
"react-cropper": "^1.0.1",
"react-dropzone": "^8.0.3",
"react-id-swiper": "^1.6.8",
"react-key-handler": "^1.2.0-beta.3",
"react-linkify": "^0.2.2",
"react-markdown": "^4.0.6",
"react-mde": "^6.0.0",
"react-meta-tags": "^0.7.1",
"react-modal": "^3.6.1",
"react-onclickoutside": "^6.7.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-share": "^2.3.1",
"react-stripe-checkout": "^2.6.3",
"react-tag-autocomplete": "^5.8.0",
"react-transition-group": "^2.5.0",
"react-visibility-sensor": "^5.0.2",
"react-youtube": "^7.8.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"serve-favicon": "^2.5.0",
"universal-cookie": "^3.0.4",
"uuid": "^3.3.2"
}
}