This repository has been archived by the owner on Jul 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
102 lines (102 loc) · 2.75 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
{
"name": "Hyperblotter",
"version": "1.0.1",
"description": "A demonstration app showing the capabilities of OpenFin.",
"scripts": {
"build": "gulp build",
"start": "gulp start",
"prod": "set NODE_ENV=production && gulp start",
"server": "gulp server",
"openfin": "gulp openfin",
"test": "gulp karma",
"postinstall": "gulp build"
},
"repository": {
"type": "git",
"url": "https://github.com/openfin/Hyperblotter"
},
"browserify": {
"transform": [
"browserify-shim",
"coffeeify",
"hbsfy"
]
},
"browserify-shim": {
"plugin": {
"exports": "plugin",
"depends": [
"jquery:$"
]
}
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.2.0",
"browser-sync": "^2.18.12",
"browserify": "^14.3.0",
"browserify-shim": "^3.8.14",
"chai": "^3.5.0",
"coffeeify": "^2.1.0",
"enzyme": "^2.8.2",
"gulp-autoprefixer": "^4.0.0",
"gulp-changed": "^3.1.0",
"gulp-exec": "^2.1.2",
"gulp-filesize": "0.0.6",
"gulp-iconfont": "^8.0.1",
"gulp-imagemin": "^3.2.0",
"gulp-jshint": "^2.0.4",
"gulp-livereload": "^3.8.0",
"gulp-minify-css": "^1.2.4",
"gulp-notify": "^3.0.0",
"gulp-rename": "^1.2.0",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-swig": "^0.8.0",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.7",
"handlebars": "^4.0.10",
"hbsfy": "^2.7.0",
"jasmine-core": "^2.3.4",
"jsdom": "9.7.0",
"jshint": "^2.9.4",
"karma": "^1.7.0",
"karma-browserify": "^5.1.1",
"karma-chrome-launcher": "^2.1.1",
"karma-coffee-preprocessor": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-nyan-reporter": "^0.2.5",
"karma-sinon-chai": "^1.3.1",
"lodash": "^4.17.4",
"merge-stream": "^1.0.1",
"mocha": "^3.4.2",
"moment": "^2.10.2",
"numeral": "^2.0.6",
"openfin-launcher": "^1.3.12",
"pretty-hrtime": "~1.0.0",
"q": "^1.4.1",
"react-addons-test-utils": "^15.5.1",
"require-dir": "^0.3.0",
"sass-lint": "^1.10.2",
"sinon": "^2.3.1",
"sinon-chai": "^2.10.0",
"socket.io-client": "^2.0.1",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.9.0",
"xhr-browserify": "0.0.4"
},
"dependencies": {
"express": "^4.13.3",
"gulp": "^3.9.1",
"gulp-live-server": "^0.0.30",
"jquery": "^3.2.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"underscore": "^1.8.3",
"webpack": "^2.6.1"
}
}