This repository has been archived by the owner on Mar 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.36 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
{
"name": "eun",
"version": "1.6.0",
"description": "Automated expense tracker",
"main": "src/main.js",
"scripts": {
"build": "webpack --env.production --config config/webpack",
"start": "NODE_ENV=production node src/main.js",
"test": "eslint src && mocha",
"lint": "eslint --fix src",
"dev-client": "webpack-dashboard -- webpack-dev-server --config config/webpack",
"dev-server": "nodemon --watch src/server src/server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omarchehab98/eun.git"
},
"author": "Omar Chehab",
"license": "MIT",
"bugs": {
"url": "https://github.com/omarchehab98/eun/issues"
},
"homepage": "https://github.com/omarchehab98/eun#readme",
"dependencies": {
"body-parser": "^1.17.1",
"chart.js": "2.3",
"express": "^4.15.2",
"he": "^1.1.1",
"imap": "^0.8.19",
"lodash": "^4.17.4",
"mailparser": "^2.0.4",
"material-ui": "^0.17.4",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"mongoose": "^4.9.6",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-chartjs-2": "^2.0.5",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.1",
"react-tap-event-plugin": "^2.0.1",
"striptags": "^3.0.1"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.2.10",
"babel-plugin-transform-react-jsx": "^6.22.0",
"babel-preset-babili": "0.0.12",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.15",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.1",
"eruda": "^1.2.2",
"eslint": "^3.17.1",
"eslint-config-standard": "^7.0.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-jasmine": "^2.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-standard": "^2.1.1",
"extract-text-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^2.28.0",
"mocha": "^3.2.0",
"node-sass": "^4.5.0",
"nodemon": "^1.11.0",
"postcss-loader": "^1.2.2",
"sass-loader": "^6.0.3",
"serve": "^5.0.2",
"style-loader": "^0.13.1",
"sw-precache-webpack-plugin": "^0.9.0",
"webpack": "^2.2.1",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.3.0"
}
}