-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.87 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
{
"name": "jefrydco-slides-deck",
"version": "0.0.1",
"private": true,
"description": "Slides deck which I use to give a talks in community meetup or tech conference",
"author": "@jefrydco",
"scripts": {
"build": "babel-node src/cli.js build $SRC_SLIDE",
"test:unit": "vue-cli-service test:unit",
"babelify": "babel src --out-dir lib --copy-files",
"help": "babel-node src/cli.js",
"start": "babel-node src/cli.js dev $SRC_SLIDE"
},
"main": "lib/index.js",
"dependencies": {
"@babel/cli": "^7.14.5",
"@babel/node": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@mdx-js/vue-loader": "^1.6.22",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-pwa": "^4.5.13",
"@vue/cli-plugin-router": "^4.5.13",
"@vue/cli-plugin-unit-jest": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.2",
"babel-plugin-prismjs": "^2.0.1",
"chalk": "^4.1.1",
"core-js": "^3.14.0",
"execa": "^4.0.3",
"fs-extra": "^10.0.0",
"markdown-it": "^12.0.6",
"meow": "^7.1.0",
"mousetrap": "^1.6.5",
"node-emoji": "^1.10.0",
"postcss-import": "^12.0.1",
"postcss-nesting": "^7.0.1",
"prettify-xml": "^1.2.0",
"prismjs": "^1.23.0",
"register-service-worker": "^1.7.2",
"serialize-javascript": "^5.0.1",
"tailwindcss": "^1.7.5",
"tailwindcss-typography": "^3.1.0",
"vue": "^2.6.14",
"vue-router": "^3.5.1",
"vue-template-compiler": "^2.6.14",
"vuex": "^3.6.2"
},
"bin": {
"mdx-vue-deck": "lib/cli.js"
},
"license": "MIT",
"repository": "https://github.com/godkinmo/mdx-vue-deck.git",
"devDependencies": {
"eslint": "^7.28.0",
"eslint-plugin-vue": "^7.11.1"
}
}