-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
71 lines (71 loc) · 2.58 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
{
"name": "@chatterbug/chatterslate",
"version": "0.7.2",
"description": "SlateJS editor for Chatterbug",
"main": "index.js",
"files": [
"index.js",
"dist"
],
"scripts": {
"start": "concurrently --names BABEL,BROWSERIFY,LIVERELOAD,SERVE 'yarn build:watch' 'yarn build:browserify' 'yarn run livereload .' 'yarn serve-example' -c blue,magenta,green,white",
"build": "rm -rf dist && yarn run babel -- -d dist src",
"build:watch": "yarn run build -- --watch",
"build:browserify": "sleep 3 && yarn run watchify -- dist/index.js examples/index.js -o dist/bundle.js",
"test": "echo 'Write some plz'",
"lint": "eslint src",
"lint:fix": "eslint src --fix || exit 0",
"release": "git push origin master; git push --tags; npm publish",
"prepublishOnly": "yarn run build",
"ci": "yarn run lint && yarn run test",
"format": "yarn run prettier-eslint \"src/**/*.js\"",
"heroku-prebuild": "yarn config set registry https://registry.npmjs.org",
"heroku-postbuild": "yarn install --production=false && yarn run build && yarn run browserify -- dist/index.js examples/index.js -o dist/bundle.js",
"serve-example": "python -m SimpleHTTPServer 8080"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/chatterbugapp/chatterslate.git"
},
"author": "Nick Quaranto",
"license": "MIT",
"bugs": {
"url": "https://github.com/chatterbugapp/chatterslate/issues"
},
"homepage": "https://github.com/chatterbugapp/chatterslate#readme",
"dependencies": {
"@gitbook/slate": "^0.34.11-0",
"@gitbook/slate-edit-list": "^0.12.2",
"@gitbook/slate-edit-table": "^0.18.0",
"@gitbook/slate-react": "^0.13.9-0",
"immutable": "^3.8.2",
"is-hotkey": "^0.1.1",
"slate-soft-break": "^0.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"browserify": "^16.1.0",
"concurrently": "^3.5.1",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"livereload": "^0.6.3",
"node-static": "^0.7.10",
"prettier-eslint": "^8.2.2",
"prettier-eslint-cli": "^4.4.0",
"prop-types": "^15.6.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"watchify": "^3.9.0"
}
}