-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
98 lines (98 loc) · 3.1 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
{
"name": "OpenGallery",
"version": "1.0.0",
"description": "A peer to peer artist platform for sharing and discovering new media content.",
"main": "index.js",
"scripts": {
"start": "npm run build | nodemon --harmony_destructuring --watch server server/server.js --ignore client",
"build": "webpack --progress --colors --config ./config/webpack.config.js",
"build-prod": "webpack --progress --colors --config ./config/webpack.prod.config.js",
"dev": "webpack-dev-server --devtool source-map --progress --colors --hot --content-base public",
"test": "mocha --compilers js:babel-register --recursive",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unsinkablecircus/opengallery.git"
},
"author": "Daniel Wong, Evan Chen, John Domingo, Megan Ring",
"license": "ISC",
"bugs": {
"url": "https://github.com/unsinkablecircus/opengallery/issues"
},
"homepage": "https://opengallery.io",
"dependencies": {
"aws-sdk": "^2.2.43",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.3.4",
"body-parser": "^1.15.0",
"bourbon": "^4.2.6",
"classnames": "^2.2.3",
"d3": "^3.5.16",
"es6-promise": "^3.1.2",
"express": "^4.13.4",
"history": "^2.0.1",
"http": "0.0.0",
"isomorphic-fetch": "^2.2.1",
"jimp": "^0.2.21",
"jwt-simple": "^0.5.0",
"knex": "^0.10.0",
"material-ui": "^0.14.4",
"moment": "^2.12.0",
"morgan": "^1.7.0",
"multer": "^1.1.0",
"node-bourbon": "^4.2.7",
"node-cloud-vision-api": "^0.2.0",
"pg": "^4.5.1",
"pg-format": "^1.0.2",
"react": "^0.14.8",
"react-addons-update": "^0.14.8",
"react-bubble-chart": "^0.3.0",
"react-dom": "^0.14.7",
"react-dropzone": "^3.3.2",
"react-hot-loader": "^1.3.0",
"react-motion": "^0.4.2",
"react-redux": "^4.4.0",
"react-router": "^2.0.1",
"react-router-redux": "^4.0.0",
"react-sticky": "^4.0.2",
"react-tap-event-plugin": "^0.2.2",
"redux": "^3.3.1",
"redux-devtools": "^3.1.1",
"redux-form": "^4.2.2",
"redux-storage": "^4.0.0",
"redux-storage-engine-localstorage": "^1.0.1",
"redux-thunk": "^2.0.1",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5",
"superagent": "^1.8.1",
"webpack-dev-middleware": "^1.6.0",
"webpack-hot-middleware": "^2.10.0"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-plugin-react": "^4.1.0",
"extract-text-webpack-plugin": "^1.0.1",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"react-addons-test-utils": "^0.14.7",
"redux-logger": "^2.6.1",
"remote-redux-devtools": "^0.1.5",
"sass-loader": "^3.2.0",
"sinon": "^1.17.3",
"style-loader": "^0.13.0",
"supertest": "^1.2.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}