forked from DageTeam/dage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.76 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "dage",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dageTest": "./node_modules/.bin/jasmine-node ./tests/serverSpec.js",
"clean": "rm -rf dist",
"compile": "webpack",
"start": "node server/server.js",
"dev": "node --harmony bin/webpack-dev-server",
"dev:nw": "npm run dev -- --nw",
"dev:no-debug": "npm run dev -- --no_debug",
"test": "npm run test:unit && npm run test:server",
"test:unit": "node ./node_modules/karma/bin/karma start",
"test:server": "mocha --harmony bin/test-server",
"deploy": "npm run test:unit && npm run compile && npm run test:server",
"server:start": "node --harmony bin/server",
"server:dev": "nodemon --harmony --watch server bin/server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DageTeam/dage.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DageTeam/dage/issues"
},
"homepage": "https://github.com/DageTeam/dage#readme",
"dependencies": {
"babel": "^5.8.23",
"bcryptjs": "^2.3.0",
"body-parser": "^1.14.1",
"classnames": "^2.1.5",
"express": "^4.13.3",
"fetch": "^0.3.6",
"fixed-data-table": "^0.4.7",
"griddle-react": "^0.2.14",
"gulp-npm-test": "0.0.2",
"history": "^1.9.0",
"imap": "^0.8.15",
"immutable": "^3.7.4",
"invariant": "^2.1.0",
"isomorphic": "0.0.11",
"isomorphic-fetch": "^2.1.1",
"jsonwebtoken": "^5.4.0",
"koa": "^1.0.0",
"koa-static": "^1.4.9",
"mail-listener2": "^0.1.8",
"mailparser": "^0.5.2",
"mysql": "^2.9.0",
"natural": "^0.2.1",
"react": "^0.14.0-rc1",
"react-bootstrap-table": "^1.2.0",
"react-chartjs": "^0.6.0",
"react-dom": "^0.14.0-rc1",
"react-input-autosize": "^0.5.3",
"react-redux": "^3.0.0-alpha",
"react-router": "1.0.0-rc1",
"react-script-loader": "0.0.1",
"react-select": "^0.6.12",
"redux": "^3.0.0",
"redux-thunk": "^1.0.0",
"request": "^2.64.0",
"sqlite3": "^3.1.0",
"superagent": "^1.4.0",
"superagent-defaults": "^0.1.13",
"thunkify": "^2.1.2",
"underscore": "^1.8.3",
"yargs": "^3.18.0"
},
"devDependencies": {
"cron": "^1.0.9",
"babel-eslint": "^4.1.1",
"browserify": "^11.2.0",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "^3.3.1",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-html-replace": "^1.5.4",
"gulp-jscs": "^3.0.0",
"gulp-react": "^3.0.1",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^1.4.1",
"jasmine": "^2.3.2",
"jasmine-node": "^1.14.5",
"nodemon": "^1.4.1",
"reactify": "^1.1.1",
"require": "^2.4.20",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.4.0",
"autoprefixer": "^6.0.3",
"autoprefixer-loader": "^3.1.0",
"babel-loader": "^5.0.0",
"babel-plugin-react-transform": "^1.1.0",
"babel-runtime": "^5.8.20",
"css-loader": "^0.19.0",
"eslint": "^1.0.0",
"eslint-loader": "^1.0.0",
"extract-text-webpack-plugin": "^0.8.0",
"clean-webpack-plugin": "^0.1.3",
"html-webpack-plugin": "^1.6.1",
"karma": "^0.13.8",
"karma-coverage": "^0.5.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sinon-chai": "^1.0.0",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.5",
"node-sass": "^3.3.3",
"phantomjs": "^1.9.17",
"phantomjs-polyfill": "0.0.1",
"react-addons-test-utils": "^0.14.0-rc1",
"react-transform-catch-errors": "^0.1.2",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.4",
"redux-devtools": "^2.1.2",
"sass-loader": "^2.0.0",
"style-loader": "^0.12.1",
"supertest": "^1.0.1",
"webpack": "^1.11.0",
"webpack-dev-server": "^1.10.1"
}
}