-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 2.32 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
{
"name": "maintainer-dashboard",
"version": "0.0.0",
"description": "Maintainer GitHub Dashboard",
"author": "Richard Littauer <[email protected]>",
"license": "MIT",
"scripts": {
"copy-css": "cp node_modules/datatables.net-dt/css/jquery.dataTables.css public/styles/ && cp node_modules/datatables.net-fixedheader-dt/css/fixedHeader.dataTables.css public/styles/",
"build": "npm-run-all --silent copy-css build:browserify",
"build:browserify": "browserify src/index.js -g uglifyify | uglifyjs --mangle --compress > public/bundle.js",
"dev": "npm-run-all --silent copy-css --parallel dev:watch dev:server",
"dev:server": "src/server/dev.js",
"dev:watch": "nodemon --watch src --watch public/index.html --watch public/styles --exec 'browserify' src/index.js --outfile public/bundle.js",
"publish": "npm-run-all --silent build ipfs",
"ipfs": "open https://ipfs.io/ipfs/`ipfs add -q -r public | tail -n 1`",
"lint": "eslint src/.",
"fix": "eslint src/. --fix"
},
"dependencies": {
"is-github-user-or-org": "^1.1.1",
"mdi": "^2.0.46"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-es6-promise": "^1.1.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"bluebird": "^3.5.0",
"browser-sync": "^2.18.13",
"browserify": "^14.4.0",
"datatables.net": "^1.10.16",
"datatables.net-dt": "^1.10.16",
"datatables.net-fixedheader": "^3.1.3",
"datatables.net-fixedheader-dt": "^3.1.3",
"eslint": "4.7.1",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "7.3.0",
"eslint-plugin-standard": "3.0.1",
"jquery": "^3.2.1",
"lightsaber": "^0.6.10",
"loading-wave": "0.0.2",
"lodash": "^4.17.4",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.1",
"octokat": "^0.9.2",
"teacup": "^2.0.0",
"uglify-es": "^3.1.2",
"uglifyify": "^4.0.3"
},
"repository": {
"type": "git",
"url": "[email protected]:mntnr/dashboard.git"
}
}