-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.88 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.88 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
{
"name": "shared-react",
"version": "0.1.0",
"description": "An example cross platform application",
"main": "index.js",
"scripts": {
"analyse": "node node_modules/.bin/webpack -p --progress --config ./webpack/webpack.config.analyse.js",
"bundle": "node node_modules/.bin/webpack -p --progress --config ./webpack/webpack.config.prod.js",
"env_prod": "cross-env ENV=prod node ./bin/env.js",
"env_dev": "cross-env ENV=dev node ./bin/env.js",
"lint": "eslint 'web/**/*.js' 'tests/**/*.js' 'common/**/*.js'",
"lint:fix": "eslint --fix 'web/**/*.js' 'common/**/*.js'",
"lint:watch": "esw -w --changed 'web/**/*.js'",
"start": "npm run env_prod && npm run bundle && NODE_ENV=production node ./server",
"dev": "npm run lint:watch & npm run env_dev && nodemon --watch server --ignore server/config/config.json --watch webpack --exec node ./server"
},
"dependencies": {
"bootstrap": "4.0.0-alpha.6",
"cross-env": "^5.2.0",
"fbjs": "0.8.17",
"history": "^4.7.2",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"polyfill-react-native": "1.0.5",
"promise-polyfill": "^7.1.2",
"react": "16.5.2",
"react-dom": "16.5.2",
"react-hot-loader": "4.3.11",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"ssg-node-express": "4.16.3",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/plugin-transform-react-constant-elements": "^7.0.0",
"@babel/plugin-transform-react-inline-elements": "^7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.4",
"babel-plugin-transform-object-rest-spread": "7.0.0-beta.3",
"babel-plugin-transform-react-remove-prop-types": "0.4.18",
"clean-webpack-plugin": "0.1.19",
"copy-webpack-plugin": "4.5.2",
"css-loader": "0.28.11",
"eslint": "5.6.1",
"eslint-config-airbnb": "17.1.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "7.11.1",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"fs-extra": "^6.0.0",
"html-loader": "0.4.3",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "2.0.0",
"json-loader": "0.5.4",
"lodash-webpack-plugin": "^0.11.5",
"node-sass": "^4.8.3",
"postcss-loader": "2.1.2",
"prettier": "^1.15.2",
"sass-loader": "6.0.7",
"style-loader": "0.13.1",
"uglifyjs-webpack-plugin": "1.3.0",
"webpack": "4.20.2",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "3.4.0",
"webpack-hot-middleware": "2.24.3"
}
}