-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.8 KB
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
{
"version": "1.2.0",
"author": {
"name": "aming",
"email": "283731869@qq.com",
"url": "http://www.soscooon.com"
},
"description": "React boilerplate with ES2015, Express.js, and Webpack4",
"license": "MIT",
"engines": {
"node": ">=7.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Tecode/react-mobx-ssr"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server.js",
"start": "cross-env NODE_ENV=production node server.js",
"prebuild": "rimraf build",
"build": "npm run build:client",
"build:client": "cross-env NODE_ENV=production webpack -p --progress --config=config/webpack.config.prod.js",
"build:server": "copyfiles -a -u 1 src/server/**/**/* build",
"lint": "eslint --ignore-path .gitignore --ignore-pattern node_modules -- .",
"prettier": "prettier --ignore-path .gitignore --write './**/*.js'",
"test": "exit 1",
"release:patch": "npm run lint && npx standard-version -r patch && git push --follow-tags origin master",
"release:minor": "npm run lint && npx standard-version -r minor && git push --follow-tags origin master",
"release:major": "npm run lint && npx standard-version -r major && git push --follow-tags origin master"
},
"postcss": {},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-loader": "7.1.4",
"babel-plugin-dynamic-import-node": "^2.1.0",
"babel-plugin-import-inspector": "^2.0.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "^6.26.0",
"babel-watch": "2.0.7",
"copyfiles": "2.0.0",
"css-loader": "0.28.11",
"eslint": "4.19.1",
"eslint-config-fbjs": "2.0.1",
"eslint-config-prettier": "2.9.0",
"eslint-import-resolver-webpack": "0.9.0",
"eslint-plugin-babel": "5.1.0",
"eslint-plugin-flowtype": "2.46.3",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.7.0",
"eslint-plugin-relay": "0.0.21",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-loader": "0.5.5",
"html-webpack-harddisk-plugin": "0.2.0",
"html-webpack-plugin": "3.2.0",
"import-inspector": "^2.0.0",
"intl": "1.2.5",
"isomorphic-style-loader": "^4.0.0",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"node-sass": "4.9.0",
"postcss-load-config": "1.2.0",
"postcss-loader": "2.1.5",
"prettier": "1.12.1",
"prop-types": "15.6.1",
"react": "16.3.2",
"react-dom": "16.3.2",
"react-hot-loader": "4.1.3",
"react-intl": "2.4.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.3.1",
"rimraf": "2.6.2",
"sanitize.css": "5.0.0",
"sass-loader": "7.0.1",
"style-loader": "0.21.0",
"uglifyjs-webpack-plugin": "1.2.5",
"webpack": "4.12.0",
"webpack-cli": "2.1.3",
"webpack-dev-middleware": "3.1.3",
"webpack-hot-middleware": "2.22.1",
"webpack-isomorphic-tools": "^3.0.6",
"webpack-merge": "4.1.2",
"webpack-node-externals": "^1.7.2",
"whatwg-fetch": "2.0.4"
},
"dependencies": {
"antd": "^3.6.2",
"babel-plugin-import": "^1.7.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-runtime": "^6.26.0",
"body-parser": "1.18.2",
"cheerio": "^1.0.0-rc.2",
"compression": "1.7.2",
"cross-env": "5.1.5",
"express": "4.16.3",
"history": "^4.7.2",
"lodash": "^4.17.11",
"mobx": "^4.3.1",
"mobx-react": "^5.2.0",
"nodemon": "^1.17.5",
"react-helmet": "^5.2.0",
"react-loadable": "^5.5.0",
"winston": "2.4.2"
}
}