-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 2.95 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
{
"name": "blubus",
"private": true,
"version": "1.0.0",
"main": "index.js",
"description": "bus booking in africa",
"scripts": {
"dev:web": "webpack-dev-server --config ./webpack/webpack.client.dev.js --progress",
"build": "yarn build:web && yarn build:ssr",
"build:web": "yarn run clean && webpack --config ./webpack/webpack.client.prod.js",
"build:ssr": "webpack --config ./webpack/webpack.server.js",
"dev:api": "",
"dev:ssr": "webpack --config ./webpack/webpack.server.js --watch",
"start": "yarn dev:web & yarn dev:ssr & nodemon build/server/main.bundle.js",
"start:prod": "nodemon build/server/main.bundle.js",
"clean": "rm -rf build",
"build:stats": "webpack --env production --json > stats.json",
"test": "jest --config ./jest.config.json",
"test:watch": "jest --config ./jest.config.json --watch",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --config ./jest.config.json --runInBand --watch",
"test:snapshot": "jest --config ./jest.config.json -u",
"flow start": "flow start",
"flow stop": "flow stop",
"flow status": "flow status",
"flow coverage": "flow coverage"
},
"lint-staged": {
"*.js": ["prettier --write", "eslint --fix", "git add"]
},
"engines": {
"node": "10.x"
},
"author": "Ajay Poshak",
"license": "ISC",
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"assets-webpack-plugin": "^3.8.0",
"axios": "^0.18.0",
"babel-loader": "^8.0.0",
"babel-plugin-styled-components": "^1.10.7",
"brotli-webpack-plugin": "^1.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.0.0",
"koa": "^2.12.0",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"prettier": "^1.19.1",
"prop-types": "^15.6.1",
"raven": "^2.6.3",
"rc-calendar": "^9.15.10",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"react-loadable": "^5.5.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"styled-components": "^4.4.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2",
"write-file-webpack-plugin": "^4.4.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.6.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.83.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.2",
"react-test-renderer": "^16.4.1",
"webpack-dev-server": "^3.1.4"
}
}