-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
35 lines (35 loc) · 1.06 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
{
"name": "@olton/mina-monitor",
"version": "2.2.2",
"license": "MIT",
"scripts": {
"client": "shx rm -rf client/output/* && npm run copy && npm run serve",
"serve": "parcel serve --open --dist-dir client/output client/index.html -p 2222",
"prebuild": "shx rm -rf client/dist/* && npm run copy",
"clear": "shx rm -rf client/dist/* client/output/* ",
"build": "parcel build --dist-dir client/dist --public-url . --no-source-maps client/index.html",
"server": "nodemon server/index.js",
"start": "node server/index.js",
"copy": "copyfiles -f client/config.json client/output"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@parcel/transformer-less": "^2.5.0",
"copyfiles": "^2.4.1",
"less": "^4.1.1",
"parcel": "latest",
"shx": "^0.3.3"
},
"dependencies": {
"node-fetch": "^2.6.1",
"nodemon": "^2.0.14",
"systeminformation": "^5.7.7",
"ws": "^5.2.3"
},
"browserslist": [
"last 1 Chrome versions",
"last 1 Firefox versions",
"last 1 Opera versions",
"last 1 Edge versions"
]
}