forked from edusoho/edusoho
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
114 lines (114 loc) · 3.56 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
107
108
109
110
111
112
113
114
{
"name": "es-webpack-engine",
"version": "1.0.0",
"description": "基于webpack的前端构建方案",
"repository": {
"type": "git",
"url": ""
},
"author": "",
"license": "MIT",
"bugs": {
"url": ""
},
"devDependencies": {
"babel-istanbul": "^0.12.2",
"chai": "^4.1.2",
"es-commit-msg-validator": "1.0.2",
"es-webpack-engine": "3.5.3-rc.1",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"jsdom": "^11.6.2",
"mocha": "^5.0.4",
"mochawesome": "^3.0.2",
"opn": "^5.3.0",
"sinon": "^4.4.6"
},
"dependencies": {
"axios": "^0.18.0",
"babel-plugin-module-resolver": "^3.1.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "6.5.0",
"bootstrap": "3.3.7",
"bootstrap-daterangepicker": "2.1.24",
"bootstrap-datetime-picker": "2.3.10",
"bootstrap-notify": "3.1.3",
"clipboard": "1.7.1",
"codeages-design": "^0.1.8",
"component-emitter": "1.2.0",
"console-polyfill": "0.2.3",
"decache": "^4.4.0",
"easy-pie-chart": "2.1.7",
"echarts": "3.1.10",
"echo-js": "1.7.3",
"es-ckeditor": "4.7.2-patch11",
"es-fullcalendar": "3.7.0-patch5",
"es-jcrop": "latest",
"es-jquery-sortable": "0.9.13-patch1",
"es-messenger": "latest",
"es-post-message": "^1.0.1",
"es-swfobject": "latest",
"es5-shim": "4.5.9",
"es6-promise": "4.0.5",
"font-awesome": "4.6.3",
"handlebars": "4.0.11",
"html5shiv": "3.7.3",
"iframe-resizer": "3.5.5",
"intro.js": "2.4.0",
"jquery": "3.2.1",
"jquery-base64": "^1.0.0",
"jquery-blurr": "0.1.2",
"jquery-form": "3.50.0",
"jquery-migrate": "3.0.0",
"jquery-validation": "1.15.1",
"jquery-waypoints": "2.0.5",
"jquery.countdown": "1.2.8",
"jquery.cycle2": "2.1.7",
"js-cookie": "2.1.3",
"lodash": "3.10.1",
"moment": "2.19.4",
"nouislider": "9.1.0",
"perfect-scrollbar": "0.6.13",
"placeholder": "1.0.2",
"postal": "2.0.5",
"postal.federation": "0.5.3",
"postal.xframe": "0.5.0",
"react": "15.6.1",
"react-dom": "15.6.1",
"reset.css": "2.0.2",
"respond.js": "1.4.2",
"es-screenfull": "3.0.2-patch",
"select2": "3.5.1",
"store": "1.3.20",
"subtitle": "0.1.5",
"swiper": "2.7.6",
"typeahead.js": "0.11.1",
"ua-parser-js": "^0.7.17",
"video.js": "4.10.2",
"waypoints": "4.0.1",
"websocket": "^1.0.25",
"weixin-js-sdk": "1.2.0"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [],
"compact": false
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --max_old_space_size=4096 node_modules/es-webpack-engine/dist/webpack.dev.js --parameters webpack.config.js",
"dev:debug": "npm run dev sourcemap:true",
"dev:custom": "npm run dev watch:CustomBundle",
"compile": "cross-env NODE_ENV=production node --max_old_space_size=4096 node_modules/es-webpack-engine/dist/webpack.prod.js --parameters webpack.config.js",
"compile:debug": "npm run compile sourcemap:true",
"compile:custom": "npm run compile module:CustomBundle",
"clean": "rm -rf node_modules",
"test": "mocha --recursive --reporter mochawesome --require babel-core/register tests/Js/test && open mochawesome-report/mochawesome.html && npm run test:cover",
"test:cover": "babel-node ./node_modules/.bin/babel-istanbul cover _mocha -- tests/Js/* -R spec --recursive && open coverage/lcov-report/index.html",
"test:simple": "mocha --recursive --require babel-core/register --reporter dot",
"commitmsg": "es-commit-msg-validator"
}
}