forked from DTStack/molecule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.69 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@dtinsight/molecule",
"version": "0.9.0-beta.1.1",
"description": "A Web IDE UI Framework built with React.js, inspired by VSCode.",
"module": "./esm/index.js",
"typings": "./esm/index.d.ts",
"files": [
"esm",
"build/preinstall.js"
],
"scripts": {
"preinstall": "node ./build/preinstall.js",
"test": "jest --no-cache --coverage",
"dev": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build-css": "webpack --config ./build/webpack.css.js",
"build-umd": "rimraf umd && webpack --config ./build/webpack.umd.js",
"check-types": "tsc",
"build": "gulp --gulpfile ./build/gulpfile.js",
"watch": "gulp --gulpfile ./build/gulpfile.js watch",
"eslint": "eslint ./src/**/*.ts ./src/**/*.tsx",
"stylelint": "stylelint **/*.{css,scss,sass}",
"prettier": "prettier --ignore-unknown .",
"pretty-quick": "pretty-quick",
"release": "standard-version",
"precommit": "pretty-quick --staged && npm run check-types",
"docs": "typedoc --entryPoints src/index.ts --out docs/api --name 'Molecule API'",
"web": "webpack serve --env prod --config ./build/web.js",
"deploy": "gh-pages -d website/build"
},
"keywords": [
"react.js",
"vscode",
"ui",
"ide"
],
"author": "DTStack Corporation",
"license": "MIT",
"dependencies": {
"@dtinsight/dt-utils": "^1.0.3",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@vscode/codicons": "^0.0.26",
"immutability-helper": "^3.1.1",
"lodash": "^4.17.21",
"monaco-editor": "^0.30.1",
"rc-dialog": "8.2.1",
"rc-textarea": "~0.3.1",
"rc-tooltip": "^5.1.1",
"rc-util": "~5.5.0",
"react-dnd": "^9.3.4",
"react-dnd-html5-backend": "^9.3.4",
"react-scrollbars-custom": "^4.0.25",
"react-split-pane": "^2.0.3",
"reflect-metadata": "^0.1.13",
"tsyringe": "4.5.0"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.12.16",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@storybook/addon-actions": "6.1.10",
"@storybook/addon-knobs": "^6.1.10",
"@storybook/addon-links": "6.1.10",
"@storybook/addon-notes": "^5.3.21",
"@storybook/addons": "6.1.10",
"@storybook/react": "6.1.10",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.172",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "6",
"css-loader": "^4.3.0",
"eslint": "^7.1.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-react": "^7.20.0",
"extract-loader": "^5.1.0",
"gh-pages": "^3.2.3",
"gulp": "^4.0.2",
"gulp-sass": "^5.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.3.0",
"jest": "^26.0.1",
"jest-canvas-mock": "^2.3.1",
"monaco-editor-webpack-plugin": "^6.0.0",
"node-sass-alias-importer": "^1.0.2",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"react-test-renderer": "^16.14.0",
"rimraf": "^3.0.2",
"sass": "^1.26.10",
"sass-loader": "^10.0.2",
"standard-version": "^9.0.0",
"style-loader": "^1.2.1",
"stylelint": "^13.7.1",
"stylelint-config-sass-guidelines": "^7.1.0",
"through2": "^4.0.2",
"typedoc": "^0.20.36",
"typescript": "^4.0.5",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.2.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run precommit"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"peerDependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"repository": "https://github.com/DTStack/molecule",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}