-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
79 lines (79 loc) · 2.21 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
{
"name": "simple-sheet",
"version": "2.2.6",
"description": "simple-sheet",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config webpack.config.js",
"builddemo": "webpack --config webpack.config.js",
"build": "rollup -c",
"prepare": "npm run build",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier src/**/*.{ts,tsx} --write"
},
"repository": {
"type": "git",
"url": "https://github.com/lvming6816077/simple-sheet"
},
"author": "lvming6816077",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"react-component",
"konva",
"mobx"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.2",
"@types/css-modules": "^1.0.2",
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.19.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-webpack-plugin": "^3.1.1",
"postcss": "^8.4.14",
"postcss-url": "^10.1.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rollup": "^2.75.5",
"rollup-plugin-postcss": "^4.0.2",
"style-loader": "^3.3.1",
"tslib": "^2.4.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"dependencies": {
"@szhsin/react-menu": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"konva": "^8.3.10",
"lodash": "^4.17.21",
"mobx": "^5.9.0",
"mobx-react-lite": "^1.0.1",
"prettier": "^2.0.0",
"react-konva": "^18.2.1",
"react-tooltip": "^4.2.21",
"react-viewer": "^3.2.2",
"ts-loader": "^9.3.1",
"webpack-dev-server": "^4.9.2"
}
}