-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 1.96 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
{
"name": "hkoscon2016",
"version": "0.0.1",
"description": "",
"repository": "https://github.com/opensourcehk/2016.opensource.hk.git",
"scripts": {
"start": "node ./src/scripts/server.js",
"clean": "rm -Rf ./public/*",
"build": "gulp build",
"dev": "gulp dev",
"test": "mocha --compilers js:babel-register --ui exports --reporter mocha-better-spec-reporter --recursive ./src/scripts/test"
},
"author": "Koala Yeung",
"license": "MIT",
"browserify": {
"transform": [
"aliasify"
]
},
"dependencies": {
"babel-core": "^6.0.0",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.8.0",
"express": "^4.14.0"
},
"devDependencies": {
"chalk": "^1.1.3",
"babel-loader": "^6.2.4",
"deep-freeze": "0.0.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-clean-css": "^2.0.10",
"gulp-concat": "^2.6.0",
"gulp-html-minifier": "^0.1.8",
"gulp-imagemin": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"gulp-svgmin": "^1.2.2",
"gulp-swig": "^0.8.0",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"json-loader": "^0.5.4",
"lodash": "^4.13.1",
"ls": "^0.1.0",
"mocha": "^2.5.3",
"mocha-better-spec-reporter": "^3.0.2",
"moment": "^2.13.0",
"moment-range": "^2.2.0",
"react": "^15.0.2",
"react-bootstrap": "^0.29.4",
"react-dom": "^15.0.2",
"react-height": "^2.1.0",
"react-hot-loader": "^1.3.0",
"react-motion": "^0.4.4",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-mock-store": "^1.1.1",
"should": "^8.4.0",
"striptags": "^2.1.1",
"truncate": "^2.0.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"babel": {
"plugins": [
"transform-class-properties"
],
"presets": [
"react",
"es2015"
]
}
}