-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.54 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.54 KB
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
{
"name": "kpm",
"version": "1.0.1",
"description": "project manager for kintone",
"scripts": {
"format": "prettier --write src",
"lint": "eslint --fix -c .eslintrc.js --ignore-path .eslintignore --ext .tsx,.ts,.jsx,.js src && stylelint --config .stylelintrc.js src/**/*.{css,less,scss}",
"start": "cross-env NODE_ENV=development node ./scripts/server.js",
"debug": "cross-env NODE_ENV=debug node ./scripts/debug.js",
"build": "cross-env NODE_ENV=production webpack --config ./config/webpack.prod.js"
},
"keywords": [
"kintone"
],
"author": "cyao",
"license": "ISC",
"browserslist": ">0.2%, not dead, ie >= 11, not op_mini all",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@cybozu/eslint-config": "^16.0.1",
"@kintone/dts-gen": "^5.0.11",
"@types/react": "^16.14.21",
"@types/react-dom": "^16.9.14",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-loader": "^8.2.3",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.2.0",
"eslint": "^8.4.1",
"fork-ts-checker-webpack-plugin": "^6.5.0",
"kintone-dev-tools": "^1.0.9",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mini-css-extract-plugin": "^2.4.5",
"postcss": "^8.4.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.0.1",
"prettier": "^2.5.1",
"sass": "^1.44.0",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-less": "^1.0.1",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-prettier": "^2.0.0",
"terser-webpack-plugin": "^5.2.5",
"typescript": "^4.5.2",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@babel/runtime-corejs3": "^7.16.3",
"@kintone/rest-api-client": "^2.0.32",
"antd": "^4.18.3",
"gantt-task-react": "^0.2.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-trello": "^2.2.11",
"string-to-color": "^2.2.2"
},
"resolutions": {
"react": "16.14.0",
"react-dom": "16.14.0"
}
}