forked from sajinshrestha/slate-editor-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.96 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
90
91
92
93
94
95
96
{
"name": "slate-editor-icons",
"version": "1000000.0.0",
"description": "icons for slate editors",
"author": {
"name": "chilijung",
"email": "[email protected]"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"slate",
"editor",
"icons"
],
"devDependencies": {
"@canner/slate-constant": "^1.0.8",
"@canner/slate-helper-block-list": "^0.1.6",
"@canner/slate-helper-block-quote": "^0.1.6",
"antd": "^3.3.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.3",
"babel-plugin-import": "^1.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"cross-env": "^2.0.1",
"css-loader": "^0.28.10",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.69.0",
"immutable": "^4.0.0-rc.9",
"js-beautify": "^1.7.5",
"lerna": "^2.9.0",
"less": "2.3.1",
"less-loader": "^4.1.0",
"markup-it": "^7.0.3",
"mocha": "^2.4.5",
"precommit-hook-eslint": "^3.0.0",
"prettier": "^1.9.2",
"prismjs": "^1.13.0",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-inspector": "^2.2.2",
"read-metadata": "^1.0.0",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.5.4",
"slate": "^0.33.0",
"slate-edit-blockquote": "0.5.0",
"slate-edit-code": "^0.15.0",
"slate-edit-list": "^0.11.2",
"slate-edit-table": "^0.15.0-alpha.4",
"slate-html-serializer": "^0.5.8",
"slate-prism": "^0.5.0",
"slate-react": "^0.12.0",
"slate-trailing-block": "^0.5.0",
"style-loader": "^0.20.3",
"styled-components": "^3.2.1",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0"
},
"scripts": {
"build": "lerna exec --parallel -- babel src -d lib --copy-files",
"build:watch": "lerna exec --parallel -- babel src -d lib --copy-files -w",
"test": "lerna exec --parallel -- npm test",
"lint:src": "prettier --write ./packages/*/src/**/*.js && eslint ./packages/*/src/**/*.js",
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.dev.js --mode development",
"build:docs": "./node_modules/.bin/webpack --config webpack.config.prod.js --mode production",
"lint": "eslint .",
"validate": "npm ls"
},
"pre-commit": [
"lint:src"
],
"repository": "Canner/slate-editor-icons",
"license": "MIT"
}