-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 2.15 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
{
"name": "monero-dashboard",
"version": "1.1.0",
"description": "Monero Dashboard for pulling useful information from a local full node.",
"main": "server/index.js",
"scripts": {
"build": "cd client && npm run build && cd ../ && git add .",
"changelog": "auto-changelog && git add CHANGELOG.md",
"dev": "concurrently -p \"[{name}]\" -n \"NODE,REACT\" -c \"bgBlue.bold,bgGreen.bold\" \"nodemon start\" \"cd client && npm start\"",
"format": "prettier --write \"{**/,}*.{js,jsx,css,less,scss,json,graphql,gql,md,yaml,yml,html,webmanifest,babelrc,prettierrc}\"",
"init": "npm install && cd client && npm install",
"lint": "eslint --cache .",
"postversion": "git push origin main && git push --tags",
"start": "npm install --production && node server/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "node version.js && npm run build && npm run changelog"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jnbarlow/monero-dashboard.git"
},
"keywords": [
"monero",
"dashboard"
],
"author": "John Barlow",
"license": "MIT",
"bugs": {
"url": "https://github.com/jnbarlow/monero-dashboard/issues"
},
"homepage": "https://github.com/jnbarlow/monero-dashboard#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"loglevel-colors": "^1.0.1"
},
"postinstall": "cd client && npm install",
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"auto-changelog": "^2.2.1",
"babel-eslint": "^10.1.0",
"concurrently": "^5.3.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.8",
"nodemon": "^2.0.7",
"npm-version": "^1.1.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"auto-changelog": {
"template": "keepachangelog",
"package": true,
"commitLimit": false
}
}