-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 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
{
"name": "beanworks",
"version": "1.0.0",
"description": "accounts payable app",
"main": "index.js",
"repository": {
"type": "github",
"url": "https://github.com/xumes/beanworks-accounts-payable"
},
"scripts": {
"test": "standard",
"client": "webpack -w --config webpack.config.js",
"server": "nodemon index.js",
"dev": "concurrently --kill-others-on-fail \"npm run client\" \"npm run server\"",
"start": "node index.js",
"beforeInstall": "webpack --config webpack.config.prod.js"
},
"keywords": [
"beanworks",
"xero",
"invoice",
"node.js",
"react.js",
"webpack"
],
"author": "Reginaldo Santos (reginaldosantos.br@gmail.com)",
"license": "ISC",
"dependencies": {
"babel-runtime": "^6.26.0",
"body-parser": "^1.18.3",
"clean-webpack-plugin": "^0.1.19",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"express": "^4.16.3",
"express-session": "^1.15.6",
"html-webpack-plugin": "^3.2.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-excel-workbook": "0.0.4",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-promise": "^0.6.0",
"session-memory-store": "^0.2.2",
"xero-node": "^3.0.16"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"concurrently": "^3.6.0",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"nodemon": "^1.17.5",
"standard": "^12.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.12.2",
"webpack-cli": "^3.0.8",
"webpack-merge": "^4.1.3"
},
"engines": {
"node": "8.11.3"
}
}