-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
71 lines (71 loc) · 2.14 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
{
"name": "com.vallemar.freqtrade",
"main": "app/app.ts",
"version": "1.0.0",
"private": true,
"scripts": {
"prettier": "npx prettier --write .",
"android": "ns debug android --no-hmr",
"android-debug": "ns debug android --no-hmr --debug-brk",
"ios": "ns debug ios --no-hmr",
"ios-debug": "ns debug ios --no-hmr --debug-brk",
"test:unit-test": "jest",
"test:unit": "jest --watch"
},
"dependencies": {
"@nativescript-community/ui-chart": "^1.2.13",
"@nativescript-community/ui-collectionview": "^4.0.48",
"@nativescript-community/ui-material-bottom-navigation": "^6.2.4",
"@nativescript-community/ui-pulltorefresh": "^2.5.0",
"@nativescript/core": "~8.1.1",
"@nativescript/tailwind": "^1.0.0-rc.1",
"@triniwiz/nativescript-toasty": "^4.1.3",
"axios": "^0.24.0",
"nativescript-vue": "~2.9.0",
"nativescript-vue-navigator": "^1.2.0",
"tailwindcss": "^2.2.19"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@nativescript/android": "8.1.1",
"@nativescript/ios": "8.1.0",
"@nativescript/types": "~8.1.1",
"@nativescript/webpack": "~5.0.0",
"@types/jest": "^27.0.3",
"@types/jest-when": "^2.7.3",
"@types/node": "~14.6.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/test-utils": "^1.3.0",
"@vue/vue2-jest": "^27.0.0-alpha.4",
"babel-jest": "^27.4.2",
"babel-preset-env": "^1.7.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.1.1",
"husky": "^7.0.4",
"jest": "^27.4.2",
"jest-when": "^3.4.2",
"lint-staged": "^12.1.2",
"nativescript-vue-template-compiler": "~2.9.0",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.2",
"ts-jest": "^27.0.7",
"typescript": "~4.3.5",
"vue": "~2.6.12",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.14"
},
"lint-staged": {
"*.{js,json,css,scss,html,md,vue,ts}": [
"npx prettier --write .",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
}
}