-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
90 lines (90 loc) · 2.84 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
{
"name": "noted",
"version": "1.25.147",
"description": "Markdown note-taking with syntax highlighting and real-time preview.",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate --fail-on-error",
"prepare": "husky install",
"lint": "yarn lint:prettier && yarn lint:es && yarn lint:style",
"lint:prettier": "prettier --check \"./**/*.{js,json,html,scss,ts,vue,yml}\"",
"lint:es": "eslint \"./**/*.{js,ts,vue}\"",
"lint:style": "stylelint \"./**/*.{css,ts,vue}\" --ignore-path .gitignore",
"test": "jest",
"pretty": "prettier --write \"./**/*.{js,json,html,scss,ts,vue,yml}\"",
"ci": "yarn pretty && yarn lint && yarn test && yarn generate",
"storybook": "yarn nuxt storybook"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"dependencies": {
"@nuxtjs/composition-api": "0.32.0",
"@nuxtjs/i18n": "7.3.1",
"@nuxtjs/pwa": "3.3.5",
"@nuxtjs/sitemap": "2.4.0",
"@yeger/vue2-masonry-wall": "2.2.1",
"core-js": "3.27.2",
"dompurify": "2.4.3",
"indent-textarea": "2.1.1",
"jszip": "3.10.1",
"marked": "4.2.12",
"nuxt-edge": "latest",
"prism-theme-vars": "0.2.4",
"prismjs": "1.29.0",
"splitpanes": "2.4.1",
"uuid": "9.0.0",
"vue": "2.6.14",
"vue-material-design-icons": "5.2.0",
"vuex": "3.6.2",
"vuex-persistedstate": "4.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.19.1",
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@nuxt/bridge": "npm:@nuxt/bridge-edge",
"@nuxt/types": "2.15.8",
"@nuxt/typescript-build": "2.1.0",
"@nuxtjs/color-mode": "2.1.1",
"@nuxtjs/eslint-config-typescript": "11.0.0",
"@nuxtjs/eslint-module": "3.1.0",
"@nuxtjs/storybook": "4.3.2",
"@nuxtjs/stylelint-module": "4.1.0",
"@types/dompurify": "2.4.0",
"@types/marked": "4.0.8",
"@types/prismjs": "1.26.0",
"@types/uuid": "9.0.0",
"@vue/test-utils": "1.3.4",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "27.5.1",
"css-loader": "5.2.7",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-nuxt": "4.0.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "9.9.0",
"husky": "8.0.3",
"jest": "27.5.1",
"lint-staged": "13.1.1",
"nuxt-font-loader": "1.1.5",
"postcss": "8.4.21",
"postcss-html": "1.5.0",
"prettier": "2.8.4",
"stylelint": "15.0.0",
"stylelint-config-html": "1.1.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard": "26.0.0",
"ts-jest": "27.1.5",
"ts-node": "10.9.1",
"vue-eslint-parser": "9.1.0",
"vue-jest": "3.0.7"
}
}