-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "bitgesell-wallet",
"version": "0.9.7",
"description": "Bitgesell Wallet JS",
"homepage": "https://app.bglwallet.io",
"bugs": "https://github.com/epexa/bitgesell-wallet/issues",
"license": "Proprietary",
"author": "epexa",
"main": "local-server.js",
"repository": "epexa/bitgesell-wallet",
"config": {
"IP": "127.0.0.1",
"PORT": "8080",
"DIST_FOLDER": "../bitgesell-wallet-dist"
},
"scripts": {
"test": "eslint 'src/*.js'",
"local-server": "IP=$npm_package_config_IP PORT=$npm_package_config_PORT node local-server.js",
"start": "npm test && npm run local-server",
"build": "./build.sh $npm_package_config_DIST_FOLDER",
"dist-start": "npm run build && DIST_FOLDER=$npm_package_config_DIST_FOLDER npm run local-server"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"clean-css-cli": "^5.6.2",
"eslint": "^8.46.0",
"eslint-config-google": "^0.14.0",
"express": "^4.18.2",
"html-minifier": "^4.0.0",
"husky": "^8.0.3",
"uglify-js": "^3.17.4"
}
}