-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
70 lines (70 loc) · 2.4 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
70
{
"name": "bandwidth-tool",
"version": "1.0.0",
"description": "A tool to help calculate and explain bandwidth allowances for Droplets on DigitalOcean.",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": "20.9.0"
},
"type": "module",
"scripts": {
"build": "npm run build:clean && npm run build:template && npm run build:droplets && npm run build:kubernetes && npm run build:static && npm run build:tool",
"build:clean": "do-vue clean",
"build:template": "do-vue template",
"build:droplets": "node ./src/build/getDroplets.js",
"build:kubernetes": "node ./src/build/getKubernetes.js",
"build:static": "copyfiles --up 2 ./src/static/{*,**/*} dist",
"build:tool": "do-vue tool src/bandwidth-tool dist",
"dev": "npm run dev:prep && do-vue dev ./src/bandwidth-tool ./dev 8000",
"deploy:spaces:comment": "do-vue comment bandwidth-tool",
"dev:prep": "npm run build:template && npm run build:droplets && npm run build:kubernetes && npm run dev:static",
"dev:static": "copyfiles --up 2 ./src/static/{*,**/*} dev",
"test": "npm run test:eslint && npm run test:scss",
"test:eslint": "eslint 'src/**/*.{js,vue}'",
"test:eslint:fix": "npm run test:eslint -- --fix",
"test:scss": "stylelint ./src/**/*.scss --config node_modules/do-bulma/.stylelintrc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/do-community/bandwidth-tool.git"
},
"keywords": [
"bandwidth"
],
"author": "DigitalOcean",
"bugs": {
"url": "https://github.com/do-community/bandwidth-tool/issues"
},
"homepage": "https://github.com/do-community/bandwidth-tool#readme",
"dependencies": {
"do-bulma": "github:do-community/do-bulma",
"do-vue": "github:do-community/do-vue",
"exceljs": "^4.4.0",
"pretty-checkbox-vue": "^1.1.9",
"query-string": "^8.1.0",
"vue": "^3.4.15",
"vue-tippy": "^6.4.1"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.20.1",
"posthtml": "^0.16.6",
"posthtml-extend": "^0.6.5",
"sass": "^1.70.0",
"stylelint": "^16.2.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"vue-template-compiler": "^2.7.16"
},
"overrides": {
"do-vue": {
"pretty-checkbox-vue": {
"vue": "^3.0.0"
}
}
}
}