-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 3.26 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
{
"name": "ld-meteor",
"version": "0.0.1",
"description": "Living Documents implemented in Meteor (web framework)",
"keywords": [
"living",
"documents",
"meteor",
"react",
"ssr"
],
"main": "app/common/lib/main.js",
"scripts": {
"dev": "meteor --settings settings-dev.json",
"debug": "meteor debug --settings settings-dev.json",
"prod": "meteor run --production --settings settings-dev.json",
"test": "meteor test --settings settings-dev.test.json --driver-package practicalmeteor:mocha --port 3100",
"testall": "meteor test --settings settings-dev.test.json --full-app --driver-package practicalmeteor:mocha --port 3101",
"test-packages": "spacejam test-packages --use-system-phantomjs --settings settings-dev.test.json --driver-package=practicalmeteor:mocha-console-runner",
"test-travis": "spacejam test --once --settings settings-dev.test.json --use-system-phantomjs --driver-package=practicalmeteor:mocha-console-runner",
"testall-travis": "spacejam test --once --full-app --settings settings-dev.test.json --use-system-phantomjs --driver-package=practicalmeteor:mocha-console-runner",
"test-build": "meteor build /tmp/build --directory && run-build",
"lint": "eslint ./app/**/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/learning-layers/LD-Meteor"
},
"author": "Martin Bachl <martin@bachl.pro>",
"contributors": [
"Philipp Dallmann <philipp.dallmann@outlook.com>"
],
"license": "MIT",
"engines": {
"node": "4.4.7"
},
"dependencies": {
"bcrypt": "^1.0.2",
"bootstrap-sass": "^3.3.7",
"classnames": "^2.2.5",
"cookies-js": "^1.2.3",
"fbemitter": "^2.1.1",
"fireball-js": "^1.1.5",
"gridfs-stream": "^1.1.1",
"hopscotch": "^0.2.6",
"indexof": "^0.0.1",
"lodash": "^4.17.4",
"meteor-node-stubs": "^0.2.4",
"mobx": "^2.7.0",
"uuid": "^3.0.1",
"radium": "^0.18.1",
"rc-slider": "^5.4.3",
"react": "^15.4.1",
"react-addons-css-transition-group": "^15.4.1",
"react-addons-shallow-compare": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.1",
"react-infinite": "^0.10.0",
"react-komposer": "^2.0.0",
"react-loader": "^2.4.0",
"react-markdown": "^2.4.2",
"react-mentions": "^0.6.3",
"react-mounter": "^1.2.0",
"react-onclickoutside": "^5.8.3",
"react-rating": "^0.6.3",
"react-s-alert": "^1.2.2",
"react-selectize": "^2.1.0",
"react-sidebar": "^2.2.1"
},
"devDependencies": {
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators": "^6.13.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-decorators-legacy": "^1.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-meteor": "^6.14.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.20.0",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-jsx": "^3.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-standard": "^2.0.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.3",
"ws": "^1.1.1"
}
}