-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·70 lines (70 loc) · 2.08 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
{
"name": "qt-spreadsheet",
"version": "0.0.1",
"description": "导演的电子表格",
"private": true,
"author": "导演 <taro.bjtu@gmail.com> (https://github.com/tarobjtu)",
"contributors": [
{
"name": "导演",
"email": "taro.bjtu@gmail.com",
"url": "https://github.com/tarobjtu"
},
{
"name": "欢迎你来贡献代码",
"email": "welcome.your@contribution.com",
"url": "https://welcome.your.com/contribution"
}
],
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
"lint": "eslint . src config || true"
},
"keywords": [
"spreadsheet",
"javascript"
],
"devDependencies": {
"@babel/core": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.2",
"css-loader": "^5.0.0",
"css-minimizer-webpack-plugin": "^1.1.5",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-webpack-plugin": "^2.1.0",
"html-webpack-plugin": "^5.0.0-alpha.7",
"mini-css-extract-plugin": "^1.0.0",
"node-sass": "^4.14.1",
"postcss-loader": "^4.0.4",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.2",
"prettier-webpack-plugin": "^1.2.0",
"sass-loader": "^10.0.3",
"style-loader": "^2.0.0",
"webpack": "^5.1.3",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.2.0"
},
"repository": {
"type": "git",
"url": "git@gitlab.alibaba-inc.com:tao.qit/qt-spreadsheet.git"
},
"dependencies": {
"eventemitter3": "^4.0.7",
"immutability-helper-x": "^1.0.5",
"lodash": "^4.17.20",
"whatwg-fetch": "^3.5.0"
}
}