2016-05-03 06:09:16 +02:00
|
|
|
{
|
|
|
|
"name": "p5.js-web-editor",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "The web editor for p5.js.",
|
|
|
|
"scripts": {
|
2018-02-06 17:53:15 +01:00
|
|
|
"start": "cross-env BABEL_DISABLE_CACHE=1 NODE_ENV=development nodemon index.js",
|
|
|
|
"start:prod": "cross-env NODE_ENV=production node index.js",
|
2017-03-02 21:18:58 +01:00
|
|
|
"lint": "eslint client server --ext .jsx --ext .js",
|
|
|
|
"lint-fix": "eslint client server --ext .jsx --ext .js --fix",
|
2018-02-06 17:53:15 +01:00
|
|
|
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js --progress",
|
2017-10-16 05:35:58 +02:00
|
|
|
"test": "npm run lint",
|
2016-12-02 00:57:50 +01:00
|
|
|
"fetch-examples": "node fetch-examples.js",
|
2018-02-22 22:47:25 +01:00
|
|
|
"fetch-examples-gg": "node fetch-examples-gg.js"
|
2016-05-03 06:09:16 +02:00
|
|
|
},
|
2016-06-28 23:26:53 +02:00
|
|
|
"main": "index.js",
|
2016-05-03 06:09:16 +02:00
|
|
|
"author": "Cassie Tarakajian",
|
2016-06-23 01:59:12 +02:00
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-06-24 00:29:55 +02:00
|
|
|
"url": "git+https://github.com/catarak/p5.js-web-editor.git"
|
2016-06-23 01:59:12 +02:00
|
|
|
},
|
2016-05-03 06:09:16 +02:00
|
|
|
"devDependencies": {
|
2017-02-22 20:29:35 +01:00
|
|
|
"babel-eslint": "^7.1.1",
|
2016-05-03 06:09:16 +02:00
|
|
|
"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-preset-es2015": "^6.6.0",
|
2016-07-22 19:14:26 +02:00
|
|
|
"babel-preset-es2015-native-modules": "^6.9.2",
|
2016-05-03 06:09:16 +02:00
|
|
|
"babel-preset-react": "^6.5.0",
|
|
|
|
"babel-preset-react-hmre": "^1.1.1",
|
2016-07-22 19:14:26 +02:00
|
|
|
"babel-preset-react-optimize": "^1.0.1",
|
2016-05-03 22:13:04 +02:00
|
|
|
"babel-preset-stage-0": "^6.5.0",
|
2017-11-06 22:19:43 +01:00
|
|
|
"chunk-manifest-webpack-plugin": "^1.1.2",
|
2016-05-03 22:13:04 +02:00
|
|
|
"css-loader": "^0.23.1",
|
2016-06-28 20:41:15 +02:00
|
|
|
"cssnano": "^3.7.1",
|
2017-02-22 20:29:35 +01:00
|
|
|
"eslint": "^3.14.0",
|
|
|
|
"eslint-config-airbnb": "^14.0.0",
|
|
|
|
"eslint-plugin-import": "^2.2.0",
|
|
|
|
"eslint-plugin-jsx-a11y": "^3.0.2",
|
|
|
|
"eslint-plugin-react": "^6.9.0",
|
2017-11-06 22:19:43 +01:00
|
|
|
"extract-text-webpack-plugin": "^2.1.2",
|
2016-05-11 19:19:37 +02:00
|
|
|
"file-loader": "^0.8.5",
|
2017-11-06 22:19:43 +01:00
|
|
|
"node-sass": "^4.5.3",
|
2016-06-23 00:48:45 +02:00
|
|
|
"nodemon": "^1.9.2",
|
2016-06-28 20:41:15 +02:00
|
|
|
"postcss-cssnext": "^2.7.0",
|
|
|
|
"postcss-focus": "^1.0.0",
|
|
|
|
"postcss-loader": "^0.9.1",
|
|
|
|
"postcss-reporter": "^1.3.3",
|
2017-11-06 22:19:43 +01:00
|
|
|
"sass-loader": "^6.0.6",
|
2016-05-03 22:13:04 +02:00
|
|
|
"style-loader": "^0.13.1",
|
2016-11-09 00:11:12 +01:00
|
|
|
"webpack-manifest-plugin": "^1.1.0"
|
2016-05-03 06:09:16 +02:00
|
|
|
},
|
|
|
|
"engines": {
|
2017-11-06 22:19:43 +01:00
|
|
|
"node": ">=8.9.0"
|
2016-05-03 06:09:16 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2016-11-02 19:08:53 +01:00
|
|
|
"archiver": "^1.1.0",
|
2016-07-20 21:33:37 +02:00
|
|
|
"async": "^2.0.0",
|
2016-06-09 22:28:21 +02:00
|
|
|
"axios": "^0.12.0",
|
2017-11-06 23:22:40 +01:00
|
|
|
"babel-core": "^6.26.0",
|
2017-02-22 20:29:35 +01:00
|
|
|
"babel-polyfill": "^6.8.0",
|
|
|
|
"babel-register": "^6.8.0",
|
2016-05-17 21:50:37 +02:00
|
|
|
"bcrypt-nodejs": "0.0.3",
|
2016-10-22 22:42:43 +02:00
|
|
|
"blob-util": "^1.2.1",
|
2016-05-13 22:04:16 +02:00
|
|
|
"body-parser": "^1.15.1",
|
2016-07-08 20:57:22 +02:00
|
|
|
"bson-objectid": "^1.1.4",
|
2016-05-12 23:40:49 +02:00
|
|
|
"classnames": "^2.2.5",
|
2017-10-30 19:38:41 +01:00
|
|
|
"clipboard": "^1.7.1",
|
2016-11-30 19:37:07 +01:00
|
|
|
"codemirror": "^5.21.0",
|
2016-05-17 21:50:37 +02:00
|
|
|
"connect-mongo": "^1.2.0",
|
2016-05-13 22:04:16 +02:00
|
|
|
"cookie-parser": "^1.4.1",
|
2017-03-23 19:53:16 +01:00
|
|
|
"cors": "^2.8.1",
|
2018-02-06 17:53:15 +01:00
|
|
|
"cross-env": "^5.1.3",
|
2016-07-14 01:52:50 +02:00
|
|
|
"csslint": "^0.10.0",
|
2017-06-26 19:58:58 +02:00
|
|
|
"csurf": "^1.9.0",
|
2017-06-06 04:46:19 +02:00
|
|
|
"decomment": "^0.8.7",
|
2016-06-09 19:56:23 +02:00
|
|
|
"dotenv": "^2.0.0",
|
2016-07-16 01:05:18 +02:00
|
|
|
"dropzone": "^4.3.0",
|
2016-07-11 21:22:29 +02:00
|
|
|
"escape-string-regexp": "^1.0.5",
|
2016-06-24 00:29:55 +02:00
|
|
|
"eslint-loader": "^1.3.0",
|
2016-10-22 22:42:43 +02:00
|
|
|
"express": "^4.13.4",
|
2016-06-14 03:07:00 +02:00
|
|
|
"express-session": "^1.13.0",
|
2016-07-21 20:18:38 +02:00
|
|
|
"file-type": "^3.8.0",
|
2017-06-26 18:48:28 +02:00
|
|
|
"fs-promise": "^1.0.0",
|
2016-07-14 01:52:50 +02:00
|
|
|
"htmlhint": "^0.9.13",
|
2017-07-19 19:56:52 +02:00
|
|
|
"is-url": "^1.2.2",
|
2017-10-30 19:38:41 +01:00
|
|
|
"is_js": "^0.9.0",
|
2016-09-07 18:16:26 +02:00
|
|
|
"js-beautify": "^1.6.4",
|
2016-11-16 19:12:36 +01:00
|
|
|
"jsdom": "^9.8.3",
|
2017-02-02 04:00:19 +01:00
|
|
|
"jshint": "^2.9.4",
|
2016-10-19 19:29:02 +02:00
|
|
|
"lodash": "^4.16.4",
|
2018-02-27 18:12:06 +01:00
|
|
|
"loop-protect": "github:catarak/loop-protect",
|
2017-06-26 18:48:28 +02:00
|
|
|
"mjml": "^3.3.2",
|
2016-07-05 22:04:14 +02:00
|
|
|
"moment": "^2.14.1",
|
2016-05-13 22:04:16 +02:00
|
|
|
"mongoose": "^4.4.16",
|
2016-07-16 01:05:18 +02:00
|
|
|
"node-uuid": "^1.4.7",
|
2016-10-12 18:02:46 +02:00
|
|
|
"nodemailer": "^2.6.4",
|
2016-10-18 04:56:19 +02:00
|
|
|
"nodemailer-mailgun-transport": "^1.2.2",
|
2016-05-17 21:50:37 +02:00
|
|
|
"passport": "^0.3.2",
|
2016-06-09 19:56:23 +02:00
|
|
|
"passport-github": "^1.1.0",
|
2016-05-17 21:50:37 +02:00
|
|
|
"passport-local": "^1.0.0",
|
2017-07-11 18:08:57 +02:00
|
|
|
"pretty-bytes": "^3.0.1",
|
2017-10-30 19:38:41 +01:00
|
|
|
"primer-tooltips": "^1.4.1",
|
2017-01-13 16:35:39 +01:00
|
|
|
"project-name-generator": "^2.1.3",
|
2018-02-07 19:06:07 +01:00
|
|
|
"prop-types": "^15.6.0",
|
2017-06-26 18:48:28 +02:00
|
|
|
"pug": "^2.0.0-beta6",
|
2017-03-23 19:53:16 +01:00
|
|
|
"q": "^1.4.1",
|
2018-02-07 19:06:07 +01:00
|
|
|
"react": "^16.2.0",
|
|
|
|
"react-dom": "^16.2.0",
|
2017-06-06 04:37:41 +02:00
|
|
|
"react-helmet": "^5.1.3",
|
2018-02-07 19:06:07 +01:00
|
|
|
"react-inlinesvg": "^0.7.5",
|
|
|
|
"react-redux": "^5.0.6",
|
|
|
|
"react-router": "^3.2.0",
|
2016-08-11 21:41:13 +02:00
|
|
|
"react-split-pane": "^0.1.44",
|
2018-02-07 19:06:07 +01:00
|
|
|
"react-tabs": "^2.2.1",
|
2016-06-09 22:28:21 +02:00
|
|
|
"redux": "^3.5.2",
|
2018-02-07 19:06:07 +01:00
|
|
|
"redux-devtools": "^3.4.1",
|
|
|
|
"redux-devtools-dock-monitor": "^1.1.3",
|
|
|
|
"redux-devtools-log-monitor": "^1.4.0",
|
2016-09-02 23:31:07 +02:00
|
|
|
"redux-form": "^5.3.3",
|
2016-06-17 22:40:13 +02:00
|
|
|
"redux-thunk": "^2.1.0",
|
2016-11-02 19:08:53 +01:00
|
|
|
"request": "^2.76.0",
|
2016-12-02 00:57:50 +01:00
|
|
|
"request-promise": "^4.1.1",
|
2017-03-23 19:23:54 +01:00
|
|
|
"s3": "^4.4.0",
|
2016-07-16 01:05:18 +02:00
|
|
|
"s3-policy": "^0.2.0",
|
2016-07-11 21:50:08 +02:00
|
|
|
"shortid": "^2.2.6",
|
2018-02-07 22:00:09 +01:00
|
|
|
"slugify": "^1.2.9",
|
2016-07-14 03:50:59 +02:00
|
|
|
"srcdoc-polyfill": "^0.2.0",
|
2017-04-20 20:05:15 +02:00
|
|
|
"url": "^0.11.0",
|
2017-11-06 22:19:43 +01:00
|
|
|
"webpack": "^2.6.1",
|
2017-02-22 20:29:35 +01:00
|
|
|
"webpack-dev-middleware": "^1.6.1",
|
|
|
|
"webpack-hot-middleware": "^2.10.0",
|
2016-07-21 20:18:38 +02:00
|
|
|
"xhr": "^2.2.1"
|
2016-05-03 06:09:16 +02:00
|
|
|
}
|
|
|
|
}
|