-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.81 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
{
"name": "@bbn/bbn-vue",
"version": "1.0.2",
"description": "Vue UI components",
"author": "Thomas Nabet <thomas.nabet@gmail.com>",
"contributors": [
{
"name": "Mirko Argentino",
"email": "mirko@bbn.solutions"
},
{
"name": "Loredana Bruno",
"email": "lore@bbn.solutions"
},
{
"name": "Vito Fava",
"email": "vito@bbn.solutions"
}
],
"main": "src/main.js",
"scripts": {
"server": "node server.js",
"dev": "http-server -o -s -c 1 -a localhost",
"build": "browserify -t node-lessify src/main.js > public/bbn-components.js",
"converts": "node src/converts"
},
"dependencies": {
"@bbn/bbn-js": "^1.*",
"angular": "^1.6.5",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"browserify-css": "^0.10.1",
"codemirror": "^5.28.0",
"css-modulesify": "^0.28.0",
"datatables": "^1.10.13",
"fancytree": "0.0.0",
"font-awesome": "^4.7.0",
"node-lessify": "^0.1.5",
"simplemde": "^1.11.2",
"vue": "^2.0.1",
"vue-loader": "^13.0.2",
"window": "^3.1.6"
},
"devDependencies": {
"aliasify": "^2.1.0",
"babel-core": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"browserify-hmr": "^0.3.1",
"cross-env": "^1.0.6",
"envify": "^3.4.1",
"express": "^4.15.3",
"http-server": "^0.9.0",
"npm-run-all": "^2.1.2",
"uglify-js": "^2.5.0",
"vueify": "^9.4.1",
"watchify": "^3.4.0"
},
"browserify": {
"transform": [
"vueify",
"babelify",
"aliasify",
"browserify-css"
]
},
"browser": {
"vue": "vue/dist/vue.common.js"
},
"aliasify": {
"aliases": {
"vue": "vue/dist/vue.js"
}
},
"jshintConfig": {
"esversion": 8,
"indent": 2
}
}