forked from Bertrand31/Monitaure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.13 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "Monitaure",
"version": "0.1.0",
"description": "A monitoring web app for SysAdmins",
"keywords": [
"System Administration",
"Monitoring",
"Uptime",
"Application",
"NodeJS",
"Sails JS",
"React",
"Redux",
"MongoDB",
"Redis",
"SASS",
"Waterline",
"Jade",
"RequireJS",
"ES6",
"Babel",
"ESLint",
"Webpack",
"Service Workers",
"Google Cloud Messaging"
],
"dependencies": {
"async": "^2.0.1",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-react-constant-elements": "^6.9.1",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.9",
"babel-polyfill": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.17.0",
"bcrypt": "^0.8.7",
"chai": "^3.5.0",
"chartist": "^0.9.8",
"connect-redis": "3.1.0",
"crypto": "0.0.3",
"css-loader": "^0.25.0",
"jade": "^1.11.0",
"lodash": "^4.16.4",
"moment": "^2.15.1",
"node-sass": "^3.10.0",
"nodemailer": "^2.6.4",
"nodemailer-sendgrid-transport": "^0.2.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"rc": "1.1.6",
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-chartist": "^0.10.2",
"react-dom": "^15.3.2",
"react-fastclick": "^2.1.2",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.6",
"react-swipeable": "^3.6.0",
"redux": "^3.6.0",
"sails": "^0.12.7",
"sails-disk": "~0.10.10",
"sails-mongo": "^0.12.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"web-push": "^3.0.0",
"webpack": "^1.13.2",
"webpack-merge": "^0.14.1",
"whatwg-fetch": "^1.0.0"
},
"scripts": {
"start:dev": "NODE_ENV=development; nodemon app.js --ignore assets/ --ignore public/ --ignore webpack.config.js",
"start:prod": "NODE_ENV=production sails lift",
"webpack:dev": "webpack --watch --color --progress",
"webpack:prod": "webpack --color --progress",
"lint:back": "./node_modules/eslint/bin/eslint.js . -c .eslintrcback.js --ext .js --cache --ignore-path .eslintignoreback; exit 0",
"lint:back-fix": "./node_modules/eslint/bin/eslint.js . -c .eslintrcback.js --ext .js --cache --ignore-path .eslintignoreback --fix; exit 0",
"lint:front": "./node_modules/eslint/bin/eslint.js assets/js/ -c .eslintrcfront.js --ext .js --ext .jsx --cache; exit 0",
"lint:front-fix": "./node_modules/eslint/bin/eslint.js assets/js/ -c .eslintrcfront.js --ext .js --ext .jsx --cache --fix; exit 0",
"test": "mocha test/unit.js"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/cua/Monitaure.git"
},
"author": "Bertrand Junqua <bertrandjun@gmail.com> (http://awebsiteabout.me)",
"license": "GPL-3.0",
"devDependencies": {
"eslint": "^3.7.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1"
}
}