This repository has been archived by the owner on Jan 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (120 loc) · 3.39 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "ara-assistant",
"version": "1.0.18",
"description": "Frontend admin UI for Staart",
"author": "Anand Chowdhary",
"license": "MIT",
"scripts": {
"dev": "nuxt-ts",
"build": "nuxt-ts generate",
"build-nuxt": "nuxt-ts build",
"start": "nuxt-ts start",
"generate": "nuxt-ts generate",
"test": "jest",
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore . --fix",
"increment-package": "node setup/increment.js",
"check-dependency": "node setup/check-dependency.js",
"precommit": "npm run lint",
"snyk-protect": "snyk protect",
"prepublishOnly": "npm run snyk-protect",
"postinstall": "npm run check-dependency"
},
"husky": {
"hooks": {
"pre-commit": "npm run increment-package && git add ."
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/vue-fontawesome": "^0.1.7",
"@nuxtjs/axios": "^5.6.0",
"@nuxtjs/google-analytics": "^2.2.0",
"@nuxtjs/pwa": "^2.6.0",
"analytics-icons": "^5.5.0",
"copy-to-clipboard": "^3.2.0",
"countries-and-timezones": "^2.0.1",
"date-fns": "^2.4.1",
"downloadjs": "^1.4.7",
"flat": "^5.0.0",
"fs-extra": "^8.1.0",
"has-yarn": "^2.1.0",
"hashids": "^2.0.1",
"jwt-decode": "^2.2.0",
"meta-ctrl-enter": "^1.0.2",
"nuxt": "^2.9.2",
"shelljs": "^0.8.3",
"snyk": "^1.232.0",
"ua-parser-js": "^0.7.20",
"vue-focus-lock": "^1.3.2",
"vue-notification": "^1.3.16",
"vue-select": "^3.4.0",
"vue-timeago": "^5.1.2",
"vuex-persist": "^2.1.0",
"which-browser": "^0.5.0"
},
"devDependencies": {
"@bazzite/nuxt-netlify": "^0.1.1",
"@nuxt/typescript-build": "^0.5.0",
"@nuxt/typescript-runtime": "^0.3.1",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/markdownit": "^1.2.6",
"@nuxtjs/sitemap": "^2.0.0",
"@staart/ui": "^1.0.9",
"@types/downloadjs": "^1.4.1",
"@types/hashids": "^1.0.30",
"@types/jest": "^25.1.0",
"@types/jsdom": "^16.1.0",
"@types/shelljs": "^0.8.5",
"@types/stripe": "^7.10.2",
"@types/vue-select": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.0",
"eslint": "^6.5.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-standard": ">=14.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": ">=2.18.2",
"eslint-plugin-jest": ">=22.17.0",
"eslint-plugin-node": ">=10.0.0",
"eslint-plugin-nuxt": ">=0.4.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": ">=4.2.1",
"eslint-plugin-standard": ">=4.0.1",
"eslint-plugin-vue": "^6.0.0",
"husky": "^4.0.0",
"jest": "^25.1.0",
"jsdom": "^16.1.0",
"loglevel": "^1.6.7",
"node-sass": "^4.12.0",
"nodemon": "^2.0.0",
"prettier": "^1.18.2",
"sass-loader": "^8.0.0",
"ts-jest": "^25.0.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"vue-property-decorator": "^8.2.2"
},
"jest": {
"roots": [
"<rootDir>/src/",
"<rootDir>/tests/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"snyk": true
}