-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.23 KB
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
{
"name": "frontend",
"version": "1.0.0",
"description": "Social media aggregator",
"keywords": [
"social media",
"vuejs",
"gulp",
"babel",
"browserify"
],
"license": "AGPL-3.0",
"author": "Maxime Van Driessche <van-driessche-maxime@hotmail.com>",
"main": "dist/build.js",
"repository": {
"type": "git",
"url": "git@github.com:oSoc17/datascouts.git"
},
"homepage": "https://osoc17.github.io/datascouts/",
"bugs": {
"url": "https://github.com/oSoc17/datascouts/issues"
},
"contributors": [
{
"name": "Maxime Van Driessche",
"email": "van-driessche-maxime@hotmail.com",
"role": "Frontend Developer"
},
{
"name": "Ismail Kutlu",
"email": "ismail.kutlu94@gmail.com",
"url": "https://ismailkutlu.github.io/",
"role": "Designer && Front-end developer"
}
],
"browserify": {
"transform": [
"babelify",
"vueify"
]
},
"browser": {
"vue": "vue/dist/vue.common.js"
},
"scripts": {
"postinstall": "cp ./src/config/index.example.js ./src/config/index.js",
"prebuild": "rm -rf dist && mkdir dist",
"build": "cross-env NODE_ENV=production browserify -g envify -p [ vueify/plugins/extract-css -o dist/build.css ] -e src/main.js | uglifyjs -c warnings=false -m > dist/build.js",
"watchify": "watchify -vd -p browserify-hmr -e src/main.js -o dist/build.js",
"serve": "http-server -o -c 1 -p 8080",
"dev": "npm-run-all --parallel watchify serve",
"start": "npm install && npm run dev"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"vue": "^2.4.2",
"vue-resource": "^1.3.4",
"vue2-filters": "^0.1.9"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"babel-runtime": "^6.0.0",
"babelify": "^7.2.0",
"browserify": "^13.1.0",
"browserify-hmr": "^0.3.1",
"cross-env": "^2.0.0",
"envify": "^3.4.1",
"gulp": "^3.9.1",
"gulp-sass": "^3.1.0",
"http-server": "^0.9.0",
"node-sass": "^4.5.3",
"npm-run-all": "^2.3.0",
"proxyquireify": "^3.0.1",
"uglify-js": "^2.5.0",
"vueify": "^9.0.0",
"watchify": "^3.4.0"
}
}