-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
98 lines (98 loc) · 3.12 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "xrpl-node-configurator",
"version": "0.0.14",
"description": "XRPL Node Configurator",
"author": "Javi <[email protected]>",
"scripts": {
"build": "genversion lib/version.js && vue-cli-service build",
"lint": "vue-cli-service lint",
"changelog": "conventional-changelog --config ./commits.config.js -i CHANGELOG.md -s",
"changelog:all": "conventional-changelog --config ./commits.config.js -i CHANGELOG.md -s -r 0",
"dev": "NODE_ENV=development vue-cli-service serve",
"cy:run": "cypress run",
"cy:verify": "cypress verify",
"cy:info": "cypress info",
"cy:version": "cypress version",
"cy:cache:list": "cypress cache list",
"cy:run:record": "cypress run --record",
"cy:open": "cypress open",
"test:e2e": "PORT=3001 start-server-and-test dev http://localhost:3001 cy:run",
"test:unit": "jest",
"test:all": "yarn test:unit && yarn test:e2e",
"deploy:ghp": "GIT_DEPLOY_REPO=https://github.com/XRPLF/xrpl-node-configurator.git lib/deploy.sh"
},
"dependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/lodash": "^4.14.167",
"add": "^2.0.6",
"axios": "^0.21.0",
"date-fns": "^2.12.0",
"file-saver": "^2.0.5",
"fingerprintjs2": "^2.1.0",
"jsonschema": "^1.4.0",
"jszip": "^3.5.0",
"ua-parser-js": "^0.7.21",
"util": "^0.12.3",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-i18n": "^8.18.2",
"vue-js-modal": "^2.0.0-rc.6",
"vue-json-pretty": "^1.6.7",
"vue-localstorage": "^0.6.2",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.1.6",
"vue-slider-component": "^3.2.11",
"vuelidate": "^0.7.6",
"vuelidate-property-decorators": "^1.0.28",
"vuex": "^3.5.1",
"yarn": "^1.22.10"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/vuelidate": "^0.7.13",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@vue/cli-plugin-babel": "~4.2.3",
"@vue/cli-plugin-eslint": "~4.2.3",
"@vue/cli-plugin-typescript": "^4.5.9",
"@vue/cli-service": "~4.2.3",
"@vue/eslint-config-standard": "^5.1.0",
"@vue/eslint-config-typescript": "^5.0.1",
"@vue/test-utils": "^1.1.2",
"babel-eslint": "^10.0.3",
"cypress": "^9.2.1",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.1.2",
"genversion": "^2.2.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"sass": "^1.70.0",
"raw-loader": "^4.0.2",
"sass-loader": "^8.0.2",
"start-server-and-test": "^1.11.7",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"ts-node": "^9.1.1",
"typescript": "^4.1.2",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.11"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn test:all"
}
},
"license": "MIT"
}