forked from dmm-com/pagoda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 4.25 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
{
"name": "airone",
"version": "1.0.0",
"description": "[](https://circleci.com/gh/dmm-com/airone)",
"main": "App.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "npm run build:development",
"build:development": "webpack build --mode development",
"build:development:analyze": "webpack build --mode development --analyze",
"build:production": "webpack build --mode production",
"build:production:analyze": "webpack build --mode production --analyze",
"build:custom": "npm run build:custom_development",
"build:custom_development": "webpack build --entry ./frontend/src/customview/CustomApp.tsx --mode development",
"build:custom_production": "webpack build --entry ./frontend/src/customview/CustomApp.tsx --mode production",
"generate:client": "./tools/generate_client.sh apiclient/typescript-fetch/src/autogenerated",
"generate:custom_client": "export DJANGO_CONFIGURATION=DRFSpectacularCustomView && ./tools/generate_client.sh frontend/src/apiclient/autogenerated",
"link:client": "cd apiclient/typescript-fetch/ && npm link && cd ../../ && npm link '@dmm-com/airone-apiclient-typescript-fetch'",
"watch": "webpack build --watch --mode development",
"watch:custom": "webpack build --watch --entry ./frontend/src/customview/CustomApp.tsx --mode development",
"lint": "npx eslint frontend && npx prettier --check frontend",
"fix": "npx eslint --fix frontend ; npx prettier --write frontend",
"test": "TZ=UTC npx jest --coverage frontend",
"test:update": "TZ=UTC npx jest -u frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/userlocalhost/airone.git"
},
"keywords": [],
"author": "Hiroyasu OHYAMA",
"license": "GPLv2",
"bugs": {
"url": "https://github.com/userlocalhost/airone/issues"
},
"homepage": "https://github.com/userlocalhost/airone#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@date-io/date-fns": "^1.3.13",
"@hookform/resolvers": "^2.9.11",
"@mui/x-date-pickers": "^5.0.0-alpha.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.5.0",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-infinite-scroller": "^1.2.3",
"@types/react-scroll": "^1.8.6",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^8.28.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-unused-imports": "^3.0.0",
"fork-ts-checker-webpack-plugin": "^7.0.0",
"i18next": "^23.7.3",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"msw": "^2.0.11",
"prettier": "2.3.2",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.4.0",
"source-map-loader": "^4.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"undici": "^5.28.2",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^4.4.0",
"zod": "^3.22.4"
},
"dependencies": {
"@dmm-com/airone-apiclient-typescript-fetch": "^0.0.8",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@jest/globals": "^27.0.6",
"@mui/icons-material": "^5.2.1",
"@mui/material": "^5.11.3",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"ip-num": "^1.4.0",
"js-cookie": "^2.2.1",
"js-file-download": "^0.4.12",
"material-ui-popup-state": "^5.0.10",
"notistack": "^2.0.3",
"react-beautiful-dnd": "^13.1.1",
"react-copy-to-clipboard": "^5.1.0",
"react-error-boundary": "^3.1.3",
"react-hook-form": "^7.33.1",
"react-infinite-scroller": "^1.2.6",
"react-router-dom": "^5.2.0",
"react-scroll": "^1.8.5",
"react-use": "^17.2.4",
"recharts": "^2.1.16",
"ts-loader": "^9.2.6"
}
}