-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.91 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": "flavored-markdown",
"version": "0.3.0",
"private": false,
"description": "In-browser markdown editor with flavors",
"author": "Julio Lozovei <[email protected]> (https://jlozovei.dev)",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test": "jest",
"lint": "vue-cli-service lint",
"postbuild": "cp README.md ./dist && cp CNAME ./dist",
"start": "vue-cli-service serve"
},
"main": "src/main.js",
"dependencies": {
"emoji-js": "^3.4.1",
"marked": "^0.7.0",
"v-clipboard": "^2.2.3",
"vue": "^2.6.12",
"vue-analytics": "^5.22.1",
"vuex": "^3.6.0",
"vuex-persist": "^2.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^4.5.14",
"@vue/cli-plugin-unit-jest": "^4.5.14",
"@vue/cli-service": "^3.12.1",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/test-utils": "^1.1.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^27.2.5",
"cssnano": "^5.0.8",
"eslint": "^8.0.1",
"eslint-plugin-vue": "^7.19.1",
"jest": "^27.2.5",
"postcss-custom-properties": "^12.0.0",
"postcss-custom-selectors": "^5.1.2",
"postcss-preset-env": "^6.7.0",
"precss": "^4.0.0",
"rucksack-css": "^1.0.2",
"vue-template-compiler": "^2.6.12"
},
"postcss": {
"plugins": {
"autoprefixer": {},
"precss": {},
"rucksack-css": {},
"cssnano": {},
"postcss-preset-env": {},
"postcss-custom-properties": {},
"postcss-custom-selectors": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"bugs": {
"url": "https://github.com/jlozovei/flavored-markdown/issues"
},
"homepage": "https://flavored-markdown.app",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jlozovei/flavored-markdown.git"
}
}