-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 3.06 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
{
"name": "prosemirror-datagrid",
"version": "0.1.1",
"main": "./dist/index.umd.js",
"description": "prosemirror-datagrid",
"keywords": [
"webpack",
"typescript",
"babel",
"prosemirror"
],
"author": "Hedger Wang",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hedgerwang/prosemirror-datagrid.git"
},
"bugs": {
"url": "https://github.com/hedgerwang/prosemirror-datagrid/issues"
},
"homepage": "https://github.com/hedgerwang/prosemirror-datagrid",
"scripts": {
"dev": "webpack serve --config=configs/webpack/dev.js",
"build": "npm run clean && webpack --config=configs/webpack/prod.js",
"clean": "rimraf dist/*",
"lint": "eslint './src/**/*.{js,ts,tsx}' --quiet --fix",
"test": "jest --coverage --watchAll --config=configs/jest.json",
"tsc": "tsc --jsx react"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.24",
"@types/mocha": "^8.2.3",
"@types/node": "^15.12.1",
"@types/prosemirror-commands": "^1.0.4",
"@types/prosemirror-dropcursor": "^1.0.3",
"@types/prosemirror-gapcursor": "^1.0.4",
"@types/prosemirror-history": "^1.0.3",
"@types/prosemirror-keymap": "^1.0.4",
"@types/prosemirror-schema-basic": "^1.0.2",
"@types/prosemirror-schema-list": "^1.0.3",
"@types/prosemirror-view": "^1.18.0",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"file-loader": "^6.2.0",
"html-inline-script-webpack-plugin": "^2.0.2",
"html-webpack-plugin": "^5.3.2",
"image-webpack-loader": "^7.0.1",
"jest": "^27.0.4",
"md5": "^2.3.0",
"node-sass": "^6.0.0",
"prettier": "^2.3.2",
"prosemirror-commands": "^1.1.10",
"prosemirror-dropcursor": "^1.3.5",
"prosemirror-gapcursor": "^1.1.5",
"prosemirror-history": "^1.1.3",
"prosemirror-keymap": "^1.1.4",
"prosemirror-model": "^1.14.3",
"prosemirror-schema-basic": "^1.1.2",
"prosemirror-schema-list": "^1.1.5",
"prosemirror-state": "^1.3.4",
"prosemirror-view": "^1.18.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"sass-loader": "^12.0.0",
"style-loader": "^2.0.0",
"sw-precache-webpack-plugin": "^1.0.0",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"invariant": "^2.2.4",
"nullthrows": "^1.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"directories": {
"test": "tests"
}
}