This repository has been archived by the owner on Feb 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.66 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": "@zarv1k/slate-dev-tools",
"version": "0.4.2",
"description": "DevTools for SlateJS",
"author": "zarv1k",
"license": "MIT",
"repository": "git://github.com/zarv1k/slate-dev-tools.git",
"main": "lib/index.js",
"module": "lib/es/index.es.js",
"jsnext:main": "lib/es/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts-ts test --env=jsdom",
"test:watch": "react-scripts-ts test --env=jsdom",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "yarn run build",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build",
"clean": "rm -rf ./lib ./example/build",
"prettify": "prettier 'src/**/*.{ts,tsx,scss,json}' 'example/src/**/*.{ts,tsx,scss,json}'"
},
"peerDependencies": {
"classnames": "^2.2.6",
"immutable": "3.8.2",
"prettier": "^1.17.0",
"prismjs": "^1.16.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-json-tree": "^0.11.2",
"slate": "^0.47.4",
"@zarv1k/slate-hyperprint": "^3.0.1",
"slate-hyperscript": "^0.13.4",
"slate-react": "^0.22.4"
},
"devDependencies": {
"@svgr/rollup": "^4.2.0",
"@types/classnames": "^2.2.7",
"@types/jest": "^24.0.12",
"@types/prismjs": "^1.16.0",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/react-json-tree": "^0.6.11",
"@types/slate": "0.44.5",
"@types/slate-react": "0.21.2",
"@zarv1k/slate-hyperprint": "^3.0.1",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"classnames": "^2.2.6",
"cross-env": "^5.2.0",
"gh-pages": "^2.0.1",
"husky": "^2.2.0",
"immutable": "3.8.2",
"lint-staged": "^8.1.6",
"prettier": "^1.17.0",
"prismjs": "^1.16.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-json-tree": "^0.11.2",
"react-scripts": "3.0.1",
"rollup": "^1.11.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "^0.21.0",
"rollup-plugin-url": "^2.2.1",
"slate": "^0.47.4",
"slate-hyperscript": "^0.13.4",
"slate-react": "^0.22.4",
"typescript": "3.3.3"
},
"files": ["lib"],
"keywords": ["slate", "slate-react", "dev-tools", "hyperscript", "hyperprint", "slate-dev-tools"],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,scss,json}": ["prettier --write", "git add"]
}
}