-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathpackage.json
94 lines (94 loc) · 3.18 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
{
"name": "pipecd-web",
"version": "1.0.0",
"main": "index.js",
"private": true,
"license": "Apache-2.0",
"scripts": {
"build": "PIPECD_VERSION=`git describe --tags --always --dirty --abbrev=7` webpack build --mode production --env htmlTemplate=./base.html --config ./webpack.config.js",
"dev": "PIPECD_VERSION=`git describe --tags --always --dirty --abbrev=7` webpack serve --env htmlTemplate=./base.html --config ./webpack.config.dev.js",
"test": "TZ=Asia/Tokyo jest --config jest.config.local.js",
"test:coverage": "yarn test --coverage",
"lint": "eslint --ext .ts,.tsx ./src",
"lint:fix": "eslint --fix --ext .ts,.tsx ./src",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@babel/runtime": "^7.20.6",
"@testing-library/dom": "^8.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.0",
"@testing-library/user-event": "^13.1.9",
"@types/echarts": "^4.9.4",
"@types/faker": "^5.1.6",
"@types/google-protobuf": "^3.15.6",
"@types/jest": "^26.0.23",
"@types/loadable__component": "^5.13.1",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-router-dom": "^5.1.5",
"@types/react-syntax-highlighter": "^15.5.1",
"@types/redux-mock-store": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-loader": "^9.1.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^23.16.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^5.3.1",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"msw": "^0.21.2",
"prettier": "^2.0.5",
"pretty-format": "^29.7.0",
"process": "^0.11.10",
"react-test-renderer": "^17.0.2",
"redux-mock-store": "^1.5.4",
"ts-jest": "^29.1.0",
"ts-loader": "^9.1.0",
"typescript": "^4.3.2",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@loadable/component": "^5.16.4",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.56",
"@primer/octicons-react": "^14.2.2",
"@reduxjs/toolkit": "^1.9.7",
"@types/dagre": "^0.7.52",
"@types/yup": "^0.29.14",
"clsx": "^1.2.1",
"dagre": "^0.8.5",
"dayjs": "^1.11.13",
"dotenv": "^8.6.0",
"echarts": "^5.5.1",
"formik": "^2.2.9",
"google-protobuf": "^3.21.4",
"grpc-web": "^1.5.0",
"history": "^4.10.1",
"path-browserify": "^1.0.1",
"query-string": "^6.14.1",
"react": "^17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.6",
"react-intersection-observer": "^8.26.2",
"react-markdown": "^6.0.3",
"react-redux": "^7.2.9",
"react-router-dom": "^5.3.4",
"react-syntax-highlighter": "^15.6.1",
"redux-thunk": "^2.4.1",
"yup": "^0.32.11"
}
}