You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
carbon/package.json

108 lines
3.1 KiB
JSON

7 years ago
{
7 years ago
"name": "carbon",
7 years ago
"version": "2.0.0",
7 years ago
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "node server.js",
7 years ago
"build": "next build",
"start": "node server.js",
"test": "npm run cy:run --",
"deploy": "now --public --docker -e NODE_ENV=production",
"prettier": "prettier --config .prettierrc --write *.js {components,handlers,lib,pages}/*.js",
"lint": "prettier --config .prettierrc *.js {components,handlers,lib,pages}/*.js",
"precommit": "npm run contrib:build && git add README.md && lint-staged",
"contrib:add": "all-contributors add",
"contrib:build": "all-contributors generate",
"cy:run": "cypress run",
"cy:open": "cypress open"
7 years ago
},
"dependencies": {
"axios": "^0.18.0",
7 years ago
"body-parser": "^1.17.2",
"codemirror": "^5.36.0",
"codemirror-graphql": "^0.6.12",
"codemirror-mode-elixir": "^1.1.1",
"cross-env": "^5.1.3",
7 years ago
"dom-to-image": "^2.5.2",
"downshift": "^1.28.0",
"dropperx": "^0.1.0",
"express": "^4.16.2",
7 years ago
"form-data": "^2.2.0",
"graphql": "^0.13.2",
"highlight.js": "^9.12.0",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.1",
"lodash.debounce": "^4.0.8",
"match-sorter": "^2.2.0",
7 years ago
"morgan": "^1.8.2",
"morphmorph": "^0.1.0",
"ms": "^2.0.0",
"next": "^5.1.0",
"now-logs": "^0.0.7",
"prop-types": "^15.6.1",
"puppeteer": "^1.0.0",
"react": "16.2.0",
7 years ago
"react-click-outside": "^3.0.0",
"react-codemirror2": "^4.2.1",
"react-color": "^2.13.8",
"react-dnd": "^2.4.0",
"react-dnd-html5-backend": "^2.4.1",
"react-dom": "16.2.0",
"react-image-crop": "^3.0.9",
"react-spinkit": "^3.0.0",
"react-spinner": "^0.2.7",
7 years ago
"react-syntax-highlight": "^15.3.1",
"resize-observer-polyfill": "^1.5.0",
7 years ago
"tohash": "^1.0.2",
"twitter": "^1.7.1",
"unsplash-js": "^4.8.0"
},
"devDependencies": {
"@zeit/next-css": "^0.1.5",
"all-contributors-cli": "^4.7.0",
"cypress": "^2.1.0",
"hex2rgb": "^2.2.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"now": "^11.1.7",
"prettier": "^1.8.1",
7 years ago
"webpack": "^3.10.0"
},
"now": {
"env": {
"TWITTER_CONSUMER_KEY": "@twitter-consumer-key",
"TWITTER_CONSUMER_SECRET": "@twitter-consumer-secret",
"TWITTER_ACCESS_TOKEN_KEY": "@twitter-access-token-key",
"TWITTER_ACCESS_TOKEN_SECRET": "@twitter-access-token-secret",
"LOGS_SECRET_PREFIX": "@logs_secret_prefix",
"UNSPLASH_SECRET_KEY": "@unsplash_secret_key",
"UNSPLASH_ACCESS_KEY": "@unsplash_access_key",
"UNSPLASH_CALLBACK_URL": "@unsplash_callback_url"
}
},
"lint-staged": {
" *.js": [
"prettier",
"git add"
]
},
"greenkeeper": {
"ignore": [
"webpack",
"react",
"react-dom"
]
},
7 years ago
"description": "Create and share beautiful images of your source code",
"repository": {
"type": "git",
"url": "git+https://github.com/dawnlabs/carbon.git"
},
"author": "Dawn Labs <@dawnlabs>",
"bugs": {
"url": "https://github.com/dawnlabs/carbon/issues"
},
"homepage": "https://dawnlabs.io/carbon"
7 years ago
}