This repository has been archived by the owner on Apr 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
69 lines (69 loc) · 2.33 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
{
"name": "cryptonote-universal-pool-list",
"version": "1.5.0",
"description": "The most comprehensive list of cryptonote-universal-pool's instances.",
"private": true,
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"build": "rimraf lib && babel src/back -d lib && webpack --mode=production",
"push": "scripts/push.sh",
"release:patch": "scripts/release.sh patch",
"release:minor": "scripts/release.sh minor",
"w:front": "webpack-dev-server --mode=development --open --hot --inline",
"w:back:edc": "CURRENCY=edollar nodemon --watch src --ignore src/front --exec babel-node src/back/index.js",
"w:back:itns": "CURRENCY=intensecoin nodemon --watch src --ignore src/front --exec babel-node src/back/index.js",
"w:back:xlc": "CURRENCY=leviarcoin nodemon --watch src --ignore src/front --exec babel-node src/back/index.js",
"w:back:fno": "CURRENCY=fonero nodemon --watch src --ignore src/front --exec babel-node src/back/index.js",
"w:back:sumo": "CURRENCY=sumokoin nodemon --watch src --ignore src/front --exec babel-node src/back/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tmorin/cryptonote-universal-pool-list.git"
},
"author": "Thibault Morin",
"license": "MIT",
"babel": {
"presets": [
"env"
]
},
"dependencies": {
"express": "^4.16.3",
"glob": "^7.1.2",
"passport": "^0.4.0",
"passport-github2": "^0.1.11",
"request": "^2.85.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bootstrap": "^4.1.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"ejs-compiled-loader": "^1.1.0",
"file-loader": "^1.1.11",
"font-awesome": "^4.7.0",
"github-api": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.3.1",
"less": "^3.0.1",
"less-loader": "^4.1.0",
"moment": "^2.22.1",
"nodemon": "^1.17.3",
"popper.js": "^1.14.3",
"rimraf": "^2.6.2",
"style-loader": "^0.21.0",
"tablesorter": "^2.30.1",
"url-loader": "^1.0.1",
"url-parse": "^1.3.0",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3",
"whatwg-fetch": "^2.0.4"
}
}