This repository was archived by the owner on May 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.53 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.53 KB
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
{
"name": "chat_app",
"version": "1.0.0",
"description": "== README",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "browserify app/assets/javascripts/src/boot.js -t babelify/browserify-incremental --extension=\".js.jsx\" -o public/assets/javascripts/boot.js",
"watch": "npm run lint:fix && watchify app/assets/javascripts/src/boot.js -t babelify --extension=\".js.jsx\" -d -o public/assets/javascripts/boot.js -v",
"watch:hot": "npm run lint && watchify app/assets/javascripts/src/boot.js -t babelify --extension=\".js.jsx\" -d -p livereactload -o public/assets/javascripts/boot.js -v",
"lint": "eslint ./app/assets/javascripts/src",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"classnames": "^2.2.5",
"eslint": "^1.10.3",
"eslint-config-standard": "^4.4.0",
"eslint-config-standard-react": "^1.2.1",
"eslint-plugin-react": "^3.14.0",
"eslint-plugin-standard": "^1.3.1",
"livereactload": "^2.1.0",
"react-proxy": "^2.0.1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"acorn": "^3.1.0",
"babel-core": "^6.3.21",
"babel-eslint": "^5.0.4",
"babel-plugin-react-transform": "^2.0.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babelify": "^7.2.0",
"browserify": "^13.0.1",
"browserify-incremental": "^3.1.1",
"change-case": "2.3.1",
"chart.js": "1.0.2",
"escodegen": "^1.8.0",
"eventemitter2": "^0.4.14",
"flux": "^2.0.0",
"gulp": "^3.8.11",
"gulp-buffer": "0.0.2",
"gulp-rev": "^6.0.1",
"gulp-shell": "^0.5.2",
"gulp-uglify": "^1.5.1",
"gulp-util": "3.0.7",
"i18n-js": "http://github.com/fnando/i18n-js/archive/v3.0.0.rc8.tar.gz",
"idempotent-bind": "^1.1.0",
"keymirror": "~0.1.0",
"lodash": "^4.2.1",
"material-ui": "^0.14.4",
"moment": "^2.22.2",
"object-assign": "4.0.1",
"page": "^1.6.4",
"rc-tooltip": "^3.3.0",
"react": "^0.14.5",
"react-addons-transition-group": "^0.14.5",
"react-dnd": "^2.0.2",
"react-dnd-html5-backend": "^2.0.2",
"react-dom": "0.14.7",
"react-modal": "^0.6.0",
"react-slick": "^0.12.0",
"react-tap-event-plugin": "^0.2.1",
"reveal.js": "^3.6.0",
"socket.io-client": "^1.4.5",
"superagent": "^1.6.1",
"vinyl-source-stream": "^1.1.0",
"watchify": "3.7.0",
"zeroclipboard": "2.2.0"
},
"engines": {
"node": "0.10.x",
"npm": "2.1.x"
}
}