-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.28 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
{
"name": "@omega-bbs/mua",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./scripts/start.js --port \"${PORT:-8080}\"",
"build": "webpack --config ./webpack/multi.config.js",
"clean": "rm -rf ./dist",
"dev": "node ./scripts/dev.js --port \"${PORT:-8080}\" --api-port=\"${API_PORT:-8000}\"",
"dev-only": "npm run dev -- --no-open",
"docker:start": "docker run --rm --publish \"${PORT:-8080}:80\" omegabbs/mua",
"docker:build": "docker build --tag omegabbs/mua .",
"analyze": "webpack-bundle-analyzer ./dist/client/stats.json",
"test": "jest --coverage --setupTestFrameworkScriptFile ./test/setup.js",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"lint": "eslint .",
"format": "eslint --fix .",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"babel-polyfill": "^7.0.0-beta.3",
"babel-runtime": "^7.0.0-beta.3",
"classnames": "^2.2.5",
"dom4": "^1.8.5",
"draft-js": "^0.10.4",
"draft-js-plugins-editor": "^2.0.0-rc8",
"express": "^4.16.2",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"mobx": "^3.3.1",
"mobx-react": "^4.3.3",
"pepjs": "^0.4.3",
"polished": "^1.8.1",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-apollo": "^1.4.16",
"react-dom": "^16.0.0",
"react-helmet": "^5.2.0",
"react-hot-loader": "^3.1.1",
"react-router-dom": "^4.2.2",
"react-transition-group": "^2.2.1",
"recompose": "^0.25.1",
"redraft": "^0.8.0",
"styled-components": "^2.2.3"
},
"devDependencies": {
"babel-core": "^7.0.0-beta.3",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-graphql-tag": "^1.3.0",
"babel-plugin-lodash": "github:omega-bbs/babel-plugin-lodash#compiled",
"babel-plugin-styled-components": "github:omega-bbs/babel-plugin-styled-components#compiled",
"babel-plugin-transform-es2015-modules-commonjs": "^7.0.0-beta.3",
"babel-plugin-transform-react-jsx-source": "^7.0.0-beta.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-plugin-transform-runtime": "^7.0.0-beta.3",
"babel-preset-env": "^7.0.0-beta.3",
"babel-preset-react": "^7.0.0-beta.3",
"babel-preset-stage-0": "^7.0.0-beta.3",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"codecov": "^2.3.1",
"css-loader": "^0.28.7",
"eslint": "^4.10.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"http-proxy-middleware": "^0.17.4",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jest-styled-components": "^4.9.0",
"lint-staged": "^4.3.0",
"opn": "^5.1.0",
"prettier": "^1.7.4",
"react-test-renderer": "^16.0.0",
"stats-webpack-plugin": "^0.6.1",
"style-loader": "^0.18.2",
"svg-react-loader": "^0.4.5",
"svgo": "^0.7.2",
"svgo-loader": "^1.2.1",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0",
"webpack-hot-server-middleware": "^0.1.0",
"webpack-node-externals": "^1.6.0"
}
}