2016-05-03 04:09:16 +00:00
|
|
|
{
|
|
|
|
"name": "p5.js-web-editor",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "The web editor for p5.js.",
|
|
|
|
"main": "server.js",
|
|
|
|
"scripts": {
|
2016-05-11 04:02:12 +00:00
|
|
|
"start": "node index.js",
|
2016-05-03 04:09:16 +00:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
|
|
},
|
|
|
|
"author": "Cassie Tarakajian",
|
|
|
|
"license": "ISC",
|
|
|
|
"devDependencies": {
|
|
|
|
"babel-loader": "^6.2.4",
|
|
|
|
"babel-plugin-transform-react-constant-elements": "^6.8.0",
|
|
|
|
"babel-plugin-transform-react-inline-elements": "^6.8.0",
|
|
|
|
"babel-plugin-transform-react-remove-prop-types": "^0.2.6",
|
|
|
|
"babel-polyfill": "^6.8.0",
|
|
|
|
"babel-preset-es2015": "^6.6.0",
|
|
|
|
"babel-preset-react": "^6.5.0",
|
|
|
|
"babel-preset-react-hmre": "^1.1.1",
|
2016-05-03 20:13:04 +00:00
|
|
|
"babel-preset-stage-0": "^6.5.0",
|
2016-05-03 04:09:16 +00:00
|
|
|
"babel-register": "^6.8.0",
|
2016-05-03 20:13:04 +00:00
|
|
|
"css-loader": "^0.23.1",
|
2016-05-11 17:19:37 +00:00
|
|
|
"file-loader": "^0.8.5",
|
2016-05-10 18:18:36 +00:00
|
|
|
"node-sass": "^3.7.0",
|
|
|
|
"sass-loader": "^3.2.0",
|
2016-05-03 20:13:04 +00:00
|
|
|
"style-loader": "^0.13.1",
|
2016-05-03 04:09:16 +00:00
|
|
|
"webpack": "^1.13.0",
|
|
|
|
"webpack-dev-middleware": "^1.6.1",
|
|
|
|
"webpack-hot-middleware": "^2.10.0"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=4"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2016-06-09 20:28:21 +00:00
|
|
|
"axios": "^0.12.0",
|
2016-05-03 04:09:16 +00:00
|
|
|
"babel-core": "^6.8.0",
|
2016-05-17 19:50:37 +00:00
|
|
|
"bcrypt-nodejs": "0.0.3",
|
2016-05-13 20:04:16 +00:00
|
|
|
"body-parser": "^1.15.1",
|
2016-05-12 21:40:49 +00:00
|
|
|
"classnames": "^2.2.5",
|
2016-05-11 17:21:20 +00:00
|
|
|
"codemirror": "^5.14.2",
|
2016-05-17 19:50:37 +00:00
|
|
|
"connect-mongo": "^1.2.0",
|
2016-05-13 20:04:16 +00:00
|
|
|
"cookie-parser": "^1.4.1",
|
2016-06-09 17:56:23 +00:00
|
|
|
"dotenv": "^2.0.0",
|
2016-05-11 14:46:53 +00:00
|
|
|
"express": "^4.13.4",
|
2016-06-09 17:56:23 +00:00
|
|
|
"jwt-simple": "^0.5.0",
|
2016-05-13 20:04:16 +00:00
|
|
|
"mongoose": "^4.4.16",
|
2016-05-17 19:50:37 +00:00
|
|
|
"passport": "^0.3.2",
|
2016-06-09 17:56:23 +00:00
|
|
|
"passport-github": "^1.1.0",
|
2016-06-09 17:56:23 +00:00
|
|
|
"passport-jwt": "^2.0.0",
|
2016-05-17 19:50:37 +00:00
|
|
|
"passport-local": "^1.0.0",
|
2016-05-03 04:09:16 +00:00
|
|
|
"react": "^15.0.2",
|
2016-05-05 21:48:26 +00:00
|
|
|
"react-dom": "^15.0.2",
|
2016-05-12 21:22:54 +00:00
|
|
|
"react-inlinesvg": "^0.4.2",
|
2016-05-05 21:48:26 +00:00
|
|
|
"react-redux": "^4.4.5",
|
2016-06-09 20:28:21 +00:00
|
|
|
"redux": "^3.5.2",
|
2016-06-09 22:41:40 +00:00
|
|
|
"redux-form": "^5.2.5",
|
|
|
|
"redux-thunk": "^2.1.0"
|
2016-05-03 04:09:16 +00:00
|
|
|
}
|
|
|
|
}
|