-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.89 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
{
"name": "ted-x-components",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"import:people-json": "cp ../tedx-auckland-site/src/_site/people.json src/assets/json/people.json",
"import:people-public-json": "cp ../tedx-auckland-site/src/_site/people.json public/people.json",
"import:videos-json": "cp ../tedx-auckland-site/src/_site/videos.json public/videos.json",
"import:youtube-json": "cp ../tedx-auckland-site/src/_site/youtube_video_data.json public/youtube_video_data.json",
"import:playlist-json": "cp ../tedx-auckland-site/src/_site/youtube_playlist_data.json public/youtube_playlist_data.json",
"import:css": "cp ../tedx-auckland-site/src/_site/assets/css/main.css src/assets/css/jekyll.css",
"import:assets": "npm-run-all import:people-json import:people-public-json import:videos-json import:youtube-json import:playlist-json import:css",
"build:lib": "vue-cli-service build --target lib ./src/sections/index.js",
"export:components": "cp dist/ted-x-components.umd.min.js ../tedx-auckland-site/src/assets/js/",
"export:hoopercss": "cp node_modules/hooper/dist/hooper.css ../tedx-auckland-site/src/assets/css/",
"export:css": " cp dist/ted-x-components.css ../tedx-auckland-site/src/assets/css/",
"build-and-export": "npm-run-all build:lib export:components export:css export:hoopercss"
},
"dependencies": {
"axios": "^0.18.1",
"date-fns": "^2.29.3",
"hooper": "^0.3.4",
"lodash": "^4.17.19",
"marked": "^1.1.1",
"vue": "^2.6.11",
"vue-router": "^3.3.4"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"sass": "^1.54.7",
"npm-run-all": "^4.1.5",
"sass-loader": "^7.3.1",
"vue-template-compiler": "^2.6.11"
}
}