-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 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
{
"nativescript": {
"id": "org.nativescript.tlsftnativescript",
"tns-android": {
"version": "6.2.0"
},
"tns-ios": {
"version": "6.2.0"
}
},
"description": "NativeScript Application",
"license": "MIT",
"repository": "https://github.com/TorchlightSoftware/tlsft-nativescript",
"dependencies": {
"@nativescript/theme": "~2.2.0",
"nativescript-ui-sidedrawer": "~8.0.0",
"nativescript-vue": "~2.4.0",
"rxjs": "^6.5.4",
"tns-core-modules": "^6.3.2"
},
"devDependencies": {
"@babel/core": "~7.1.0",
"@babel/preset-env": "~7.1.0",
"acorn": "^7.1.0",
"babel-eslint": "^10.0.3",
"babel-loader": "~8.0.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.1.2",
"husky": "^3.1.0",
"lint-staged": "^10.0.3",
"nativescript-dev-webpack": "~1.3.0",
"nativescript-vue-template-compiler": "~2.4.0",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"typescript": "^3.7.5",
"vue-loader": "~15.4.0"
},
"lint-staged": {
"*.js": [
"prettier --write 'app/**/*.js'",
"eslint --ext .js --fix app",
"git add"
],
"*.vue": [
"prettier --write 'app/**/*.vue'",
"eslint --ext .vue --fix app",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"gitHead": "a6fec076a20f898feabb4466a2c411158c18a100",
"readme": "NativeScript Application"
}