This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
105 lines (105 loc) · 3.62 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
97
98
99
100
101
102
103
104
105
{
"private": true,
"name": "slate-sensible",
"workspaces": [
"packages/*"
],
"peerDependencies": {
"slate": "*",
"slate-delete-one-line": "*",
"slate-on-select": "*",
"slate-plain-serializer": "*",
"slate-poor-mentions": "*",
"slate-react": "*",
"slate-schema-violations": "*"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.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.26.0",
"babelify": "^8.0.0",
"codecov": "^3.0.2",
"coveralls": "^3.0.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"es6-plato": "^1.0.18",
"eslint": "^4.15.0",
"eslint-config-gitbook": "^4.0.0",
"eslint-import-resolver-lerna": "^1.0.0",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.57.3",
"flow-copy-source": "^1.2.1",
"get-window": "^1.1.2",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.0.6",
"html-webpack-template": "^6.1.0",
"http-server": "^0.9.0",
"immutable": "^4.0.0-rc",
"jest": "^23.1.0",
"jsdom": "^11.11.0",
"lerna": "^2.11.0",
"lerna-alias": "^3.0.2",
"npm-run-all": "^4.1.3",
"prettier": "^1.9.2",
"react": "^16.4.1",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0",
"read-metadata": "^1.0.0",
"rollup": "^0.57.0",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.0",
"rollup-plugin-node-resolve": "^3.2.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^3.0.0",
"slate": "^0.34.3",
"slate-hyperscript": "^0.5.18",
"slate-react": "^0.13.0",
"slate-simulator": "^0.4.35",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.8.3",
"webpack-cli": "^3.0.6",
"webpack-dev-server": "^3.1.4"
},
"scripts": {
"build:lib": "rollup --config ./support/rollup/config.js",
"build:flow": "lerna run build:flow",
"build": "yarn build:lib && yarn build:flow",
"prod": "NODE_ENV=production yarn build:lib && yarn build:flow",
"build:pages": "yarn build:lib && cross-env NODE_ENV=production webpack --mode=production --config support/webpack/config.js",
"gh-pages": "gh-pages --dist ./build",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint packages/*/src packages/*/test examples/*/*.js examples/dev/*/*.js",
"lint:prettier": "prettier --list-different '**/*.{md,json,css}'",
"clean": "lerna run clean && rm -rf ./node_modules ./dist ./build",
"test": "jest",
"test:coverage": "jest --coverage && codecov",
"start": "npm-run-all --parallel --print-label watch server",
"server": "webpack-dev-server --mode development --config ./support/webpack/config.js",
"watch": "rollup --config support/rollup/config.js --watch",
"report:complexity": "node support/complexity/plato.js && open tmp/plato/index.html"
},
"dependencies": {
"flow": "^0.2.3"
}
}