-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.37 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "erpx",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "gulp build && node server",
"watch": "gulp watch",
"build": "gulp build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "MIS <travel2wxy@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git@github.com:ioPanda/erp.git"
},
"keywords": [
"marionette",
"browserify",
"backbone"
],
"bugs": {
"url": "https://github.com/ioPanda/erp/issues"
},
"homepage": "https://github.com/ioPanda/erp",
"devDependencies": {
"babel": "^6.5.2",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"backbone-service-modals": "^0.2.0",
"backbone.service": "^0.5.2",
"backbone.storage": "^0.2.1",
"body-parser": "^1.15.2",
"browser-sync": "^2.13.0",
"browserify": "^13.0.1",
"browserify-shim": "^3.8.12",
"del": "^2.2.1",
"echarts": "^3.2.3",
"express": "^4.14.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-imagemin": "^3.0.2",
"gulp-less": "^3.1.0",
"gulp-load-plugins": "^1.2.4",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"hbsfy": "^2.7.0",
"morgan": "^1.7.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0",
"yargs": "^4.7.1"
},
"dependencies": {
"animate.css": "^3.5.1",
"backbone": "^1.3.3",
"backbone-query-parameters": "^0.4.0",
"backbone-routing": "^0.2.0",
"backbone.marionette": "^2.4.7",
"backbone.radio": "^1.0.5",
"backbone.syphon": "^0.6.3",
"bootstrap": "^3.3.7",
"echarts": "^3.2.3",
"handlebars": "^4.0.5",
"jquery": "^2.1.4",
"lodash": "^4.13.1",
"nprogress": "^0.2.0",
"requirejs": "^2.2.0",
"xcharts": "^0.3.0"
},
"browser": {
"bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js"
},
"browserify-shim": {
"bootstrap": {
"depends": [
"jquery:jQuery"
]
}
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
],
[
"hbsfy",
{
"extensions": [
"hbs"
]
}
],
"browserify-shim"
]
}
}