-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.72 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
{
"name": "realtime-client",
"version": "1.1.0",
"description": "Calumet Real-Time Client Framework",
"private": true,
"main": "demos.js",
"scripts": {
"demos": "node demos.js",
"build": "npm run build-css && npm run build-js",
"build:production": "NODE_ENV=production npm run build-css && NODE_ENV=production npm run build-js",
"build:test": "NODE_ENV=test npm run build-css && NODE_ENV=test npm run build-js",
"build-css": "gulp sass",
"build-js": "webpack",
"test": "npm run test-lint && npm run test-js",
"test-lint": "eslint --cache --quiet ./src",
"test-js": "NODE_ENV=test karma start karma.conf.js",
"docs": "styleguidist build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calumet/realtime-client.git"
},
"keywords": [
"real-time",
"calumet"
],
"author": "Romel Pérez (romelperez.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/calumet/realtime-client/issues"
},
"homepage": "https://github.com/calumet/realtime-client#readme",
"dependencies": {
"axios": "^0.15.3",
"babel-polyfill": "^6.20.0",
"classnames": "^2.2.5",
"foundation-sites": "^6.3.0",
"halogen": "^0.2.0",
"i18next": "^4.2.0",
"immutable": "^3.8.1",
"moment": "^2.17.1",
"prhone-tools": "^1.0.2",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-dotdotdot": "^1.0.17",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"react-textarea-autosize": "^4.0.5",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"reselect": "^2.5.4",
"string": "^3.3.3"
},
"devDependencies": {
"autoprefixer": "^6.6.1",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"chai": "^3.5.0",
"cssnano": "^3.10.0",
"enzyme": "^2.7.0",
"eslint": "^3.14.0",
"eslint-plugin-react": "^6.9.0",
"express": "^4.14.0",
"gulp": "^3.9.1",
"gulp-if": "^2.0.2",
"gulp-livereload": "^3.8.1",
"gulp-postcss": "^6.3.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^1.11.0",
"karma": "^1.4.0",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.1",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.4.2",
"react-styleguidist": "^4.6.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"vulcanize": "^1.15.3",
"webpack": "^1.14.0"
}
}