-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathpackage.json
66 lines (66 loc) · 1.59 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
{
"name": "perf-rlo-ui",
"version": "1.0.0",
"description": "",
"scripts": {
"install-perfetto": "./download_perfetto.sh",
"watch": "parcel watch --no-hmr",
"build": "parcel build",
"fmt": "prettier --write src",
"check": "vue-tsc -p tsconfig.json --noEmit && prettier --check src"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/types": "^7.21.4",
"@parcel/compressor-brotli": "^2.8.3",
"@parcel/transformer-vue": "^2.8.3",
"@types/msgpack-lite": "^0.1.8",
"prettier": "2.8.8",
"typescript": "^5.0.2",
"vue-tsc": "^1.8.3"
},
"dependencies": {
"date-fns": "^2.30.0",
"highcharts": "^11.4.1",
"msgpack-lite": "^0.1.26",
"parcel": "^2.8.3",
"sass": "^1.59.3",
"uplot": "^1.6.24",
"vue": "^3.2.47"
},
"targets": {
"dashboard": {
"source": "src/pages/dashboard.ts",
"distDir": "dist/scripts"
},
"status": {
"source": "src/pages/status.ts",
"distDir": "dist/scripts"
},
"bootstrap": {
"source": "src/pages/bootstrap.ts",
"distDir": "dist/scripts"
},
"graphs": {
"source": "src/pages/graphs.ts",
"distDir": "dist/scripts"
},
"compare": {
"source": "src/pages/compare.ts",
"distDir": "dist/scripts"
},
"detailed-query": {
"source": "src/pages/detailed-query.ts",
"distDir": "dist/scripts"
},
"uplot": {
"source": "node_modules/uplot/dist/uPlot.min.css",
"distDir": "dist/styles"
}
},
"browserslist": "> 0.5%, last 3 years, not dead",
"alias": {
"buffer": false
}
}