-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.79 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
{
"name": "@guestbell/slate-plugins",
"version": "1.0.0",
"description": "Collection of plugins for slate",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development npm-run-all clean build:lib start:watch",
"start:watch": "npm-run-all -p build:watch start:examples",
"start:examples": "cross-env NODE_ENV=development lerna run start --stream",
"build": "cross-env NODE_ENV=production && yarn clean && lerna run build --stream",
"build:lib": "cross-env NODE_ENV=production lerna run build --ignore @guestbell/slate-plugins-examples --stream",
"build:watch": "cross-env NODE_ENV=development lerna run build:watch --parallel",
"bootstrap": "lerna bootstrap",
"postinstall": "npm-run-all bootstrap",
"clean": "lerna run clean",
"publish": "lerna publish",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guestbell/slate-plugins.git"
},
"keywords": [
"slate",
"slate-react",
"slate",
"plugins"
],
"author": "Peter Kottas",
"license": "MIT",
"bugs": {
"url": "https://github.com/guestbell/slate-plugins/issues"
},
"homepage": "https://github.com/guestbell/slate-plugins#readme",
"devDependencies": {
"@types/hyperscript": "",
"@types/jest": "23.3.10",
"@types/node": "10.12.15",
"@types/react": "16.7.17",
"@types/react-dom": "16.0.11",
"@types/slate": "0.43.6",
"@types/slate-react": "0.20.3",
"cross-env": "5.2.0",
"lerna": "3.15.0",
"npm-run-all": "4.1.5",
"react": "16.6.3",
"react-dom": "16.6.3",
"rimraf": "2.6.2",
"slate": "0.44.9",
"slate-hyperscript": "0.11.24",
"slate-react": "0.21.15",
"tslint": "5.12.0",
"tslint-react": "3.6.0",
"typescript": "3.2.2",
"cpx": "1.5.0"
}
}