-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.11 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
{
"name": "reactjs-starter",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "nodemon server",
"start": "node server",
"heroku-postbuild": "yarn build",
"build": "NODE_ENV=production next build",
"be": "PORT=3005 BE=true nodemon server --watch server/",
"fe": "PORT=3000 FE=true node server --watch app/ pages/ server/fe.js",
"eslint": "say 'checking eslint' && eslint --ignore-path .gitignore app/ pages/ server/ && say 'eslint clean'"
},
"pre-commit": "eslint",
"dependencies": {
"@antv/data-set": "^0.10.1",
"@babel/core": "7.2.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"@sendgrid/mail": "6.3.1",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"antd": "3.11.2",
"async": "2.6.1",
"axios": "0.18.0",
"babel-eslint": "10.0.1",
"babel-plugin-import": "1.11.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"bcrypt": "3.0.2",
"bizcharts": "^3.4.3",
"body-parser": "1.18.3",
"classnames": "^2.2.6",
"cloudinary": "^1.13.2",
"cookie-parser": "1.4.3",
"dotenv": "6.2.0",
"exenv": "^1.2.2",
"express": "4.16.4",
"express-session": "1.15.6",
"immutable": "4.0.0-rc.12",
"js-cookie": "2.2.0",
"jsonwebtoken": "8.4.0",
"loadable-components": "^2.2.3",
"lodash": "4.17.11",
"lodash-decorators": "^6.0.1",
"method-override": "3.0.0",
"mockjs": "1.0.1-beta3",
"module-alias": "2.1.0",
"moment": "2.23.0",
"multer": "1.4.1",
"next": "7.0.2",
"next-redux-wrapper": "2.1.0",
"next-routes": "^1.4.2",
"numeral": "^2.0.6",
"pg": "7.7.1",
"prop-types": "15.6.2",
"qs": "6.6.0",
"randomstring": "1.1.5",
"react": "16.8.1",
"react-ckeditor-wrapper": "^1.1.2",
"react-cookie": "3.0.8",
"react-dom": "16.8.1",
"react-draft-wysiwyg": "^1.12.20",
"react-fittext": "^1.0.0",
"react-helmet": "5.2.0",
"react-icons": "3.2.2",
"react-redux": "6.0.0",
"redux": "4.0.1",
"redux-devtools": "3.4.2",
"redux-form": "8.0.4",
"redux-immutable": "4.0.0",
"redux-saga": "^0.16.2",
"reduxsauce": "1.0.1",
"reselect": "^4.0.0",
"sanitizer": "0.1.3",
"sequelize": "4.42.0",
"sequelize-cli": "5.4.0",
"sequelize-slugify": "^0.6.1",
"universal-cookie-express": "3.0.7",
"uuid": "3.3.2",
"validator": "10.9.0",
"webpack": "^4.29.5"
},
"devDependencies": {
"cross-env": "5.2.0",
"eslint": "5.10.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "^7.11.1",
"extracted-loader": "^1.0.7",
"file-loader": "^2.0.0",
"http-proxy-middleware": "^0.19.1",
"less-loader": "^4.1.0",
"node-sass": "^4.11.0",
"pre-commit": "1.2.2",
"react-no-ssr": "^1.1.0",
"redux-logger": "3.0.6",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2"
},
"heroku-run-build-script": true
}