forked from aporia-ai/mlops.toys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.75 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
{
"name": "mlops.toys",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore . --fix",
"lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore --fix",
"lint": "npm run lint:js && npm run lint:style"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/gtm": "^2.4.0",
"@nuxtjs/markdownit": "^2.0.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/svg-sprite": "^0.5.2",
"@octokit/auth-app": "^3.5.1",
"@octokit/rest": "^18.5.6",
"@tailwindcss/aspect-ratio": "^0.2.0",
"core-js": "^3.15.2",
"gsap": "^3.7.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"node-sass": "^5.0.0",
"nuxt": "^2.15.7",
"raw-loader": "^4.0.2",
"sass": "^1.35.1",
"sass-loader": "^10.1.1",
"shade-blend-color": "^1.0.0",
"vue": "^2.6.14",
"vue-gtag": "^1.16.1"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@nuxtjs/eslint-config": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/tailwindcss": "^4.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.7.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"postcss": "^8.2.8",
"prettier": "^2.2.1",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^21.0.0"
}
}