forked from bokuweb/slate-editable-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.01 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
{
"name": "slate-editable-table",
"version": "0.2.2",
"repository": "https://github.com/bokuweb/slate-editable-table.git",
"author": "bokuweb",
"license": "MIT",
"main": "./lib/index.es5.js",
"module": "./lib/index.js",
"jsnext:main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix 'src/**/*.tsx'",
"test": "jest",
"test:update": "jest --updateSnapshot",
"format": "prettier --write '**/*.{tsx,ts}'",
"format:ci": "prettier '**/*.{tsx,ts}'",
"copy-decs": "cpy 'decls/src/*.d.ts' lib && cpy 'decls/src/mutations/*.d.ts' lib/mutations",
"tsc": "tsc -p tsconfig.json --skipLibCheck",
"build:prod:main": "rollup -c scripts/prod.js",
"build:prod:es5": "rollup -c scripts/prod.es5.js",
"build": "npm-run-all --serial build:prod:*",
"build-storybook": "build-storybook --quiet --loglevel silent",
"storybook": "start-storybook -p 9001 -c .storybook",
"prepublishOnly": "npm-run-all --serial build tsc copy-decs"
},
"devDependencies": {
"@babel/cli": "7.6.2",
"@babel/core": "7.6.2",
"@babel/parser": "7.6.2",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-transform-modules-commonjs": "7.6.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.6.0",
"@storybook/addon-actions": "5.2.1",
"@storybook/addons": "5.2.1",
"@storybook/react": "5.2.1",
"@types/immutable": "3.8.7",
"@types/jest": "24.0.18",
"@types/react": "16.9.3",
"@types/react-dom": "16.9.1",
"@types/slate": "0.47.1",
"@types/slate-html-serializer": "0.6.3",
"@types/slate-plain-serializer": "0.6.1",
"@types/slate-react": "0.22.5",
"@types/storybook__addon-actions": "3.4.3",
"@types/storybook__react": "4.0.2",
"@typescript-eslint/eslint-plugin": "2.3.1",
"@typescript-eslint/parser": "2.3.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"cpy-cli": "^2.0.0",
"eslint": "6.4.0",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-prettier": "3.1.1",
"immutable": "4.0.0-rc.12",
"jest": "24.9.0",
"prettier": "1.18.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-json-pretty": "2.1.0",
"rollup": "1.21.4",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-typescript2": "0.24.2",
"slate": "0.47.8",
"slate-html-serializer": "0.8.10",
"slate-react": "0.22.8",
"typescript": "3.6.3",
"url-loader": "2.1.0",
"zisui": "1.3.4"
},
"peerDependencies": {
"slate": ">= 0.45.0",
"slate-react": ">= 0.21.20"
},
"dependencies": {
"@types/uuid": "^3.4.5",
"npm-run-all": "^4.1.5",
"tslib": "^1.10.0",
"uuid": "^3.3.3"
},
"files": [
"lib"
]
}