forked from carbon-app/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.59 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
{
"name": "carbon",
"version": "2.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "cross-env NODE_ENV=production node server.js",
"deploy": "now --public -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"
},
"dependencies": {
"axios": "^0.17.1",
"body-parser": "^1.17.2",
"codemirror": "^5.31.0",
"codemirror-graphql": "^0.6.12",
"codemirror-mode-elixir": "^1.1.1",
"cross-env": "^5.1.3",
"dom-to-image": "^2.5.2",
"downshift": "^1.28.0",
"dropperx": "^0.1.0",
"express": "^4.16.2",
"form-data": "^2.2.0",
"graphql": "^0.11.7",
"highlight.js": "^9.12.0",
"history": "^4.7.2",
"lodash.debounce": "^4.0.8",
"morgan": "^1.8.2",
"morphmorph": "^0.0.2",
"ms": "^2.0.0",
"next": "^5.0.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-click-outside": "^3.0.0",
"react-codemirror2": "^3.0.7",
"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",
"react-syntax-highlight": "^15.3.1",
"resize-observer-polyfill": "^1.5.0",
"tohash": "^1.0.2",
"twitter": "^1.7.1"
},
"devDependencies": {
"all-contributors-cli": "^4.7.0",
"cypress": "^1.4.1",
"hex2rgb": "^2.2.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"now": "^9.2.7",
"prettier": "^1.8.1",
"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"
}
},
"lint-staged": {
" *.js": [
"prettier",
"git add"
]
},
"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"
}