-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
127 lines (127 loc) · 5.34 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
{
"name": "@dmm-com/pagoda-core",
"version": "1.0.4",
"description": "[![CircleCI](https://circleci.com/gh/dmm-com/airone.svg?style=svg&circle-token=2e12c068b0ed1bab9d0c2d72529d5ee1da9b53b4)](https://circleci.com/gh/dmm-com/airone)",
"main": "frontend/dist/pagoda-core.js",
"types": "frontend/dist/index.d.ts",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "npm run build:development",
"build:development": "webpack build --entry ./frontend/src/App.tsx --mode development",
"build:development:analyze": "webpack build --entry ./frontend/src/App.tsx --mode development --analyze",
"build:production": "webpack build --entry ./frontend/src/App.tsx --mode production",
"build:production:analyze": "webpack build --entry ./frontend/src/App.tsx --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",
"generate:client_docker": "./tools/generate_client.sh apiclient/typescript-fetch/src/autogenerated --docker",
"generate:custom_client_docker": "export DJANGO_CONFIGURATION=DRFSpectacularCustomView && ./tools/generate_client.sh frontend/src/apiclient/autogenerated --docker",
"link:client": "cd apiclient/typescript-fetch/ && npm link && cd ../../ && npm link '@dmm-com/airone-apiclient-typescript-fetch'",
"watch": "webpack build --entry ./frontend/src/App.tsx --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",
"build:lib": "rm -rf frontend/dist && npm run build:lib:code && npm run build:lib:types",
"build:lib:code": "webpack --config webpack.library.config.js --mode development",
"build:lib:types": "tsc --project tsconfig.lib.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmm-com/airone.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"frontend/dist"
],
"keywords": [],
"author": "Hiroyasu OHYAMA",
"license": "GPLv2",
"bugs": {
"url": "https://github.com/dmm-com/pagoda/issues"
},
"homepage": "https://github.com/dmm-com/pagoda#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",
"@dmm-com/airone-apiclient-typescript-fetch": "^0.3.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@hookform/resolvers": "^2.9.11",
"@jest/globals": "^27.0.6",
"@mui/icons-material": "^5.2.1",
"@mui/x-date-pickers": "^5.0.0-alpha.7",
"@react-oauth/google": "^0.12.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/encoding-japanese": "^2.2.1",
"@types/jest": "^29.5.0",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-infinite-scroller": "^1.2.3",
"@types/react-scroll": "^1.8.6",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.10.2",
"encoding-japanese": "^2.2.0",
"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",
"ip-num": "^1.4.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"js-cookie": "^2.2.1",
"js-file-download": "^0.4.12",
"material-ui-popup-state": "^5.0.10",
"msw": "^2.0.11",
"prettier": "2.3.2",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.3",
"react-force-graph-2d": "^1.25.6",
"react-hook-form": "^7.33.1",
"react-i18next": "^13.4.0",
"react-infinite-scroller": "^1.2.6",
"react-router-dom": "^6.27.0",
"react-scroll": "^1.8.5",
"react-use": "^17.2.4",
"recharts": "^2.1.16",
"source-map-loader": "^4.0.1",
"ts-jest": "^29.1.0",
"ts-loader": "^9.2.6",
"typescript": "^5.0.4",
"undici": "^5.28.5",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^4.4.0",
"zod": "^3.22.4"
},
"peerDependencies": {
"@emotion/styled": "^11.0.0",
"@mui/material": "^5.11.3",
"notistack": "^3.0.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.0.0"
}
}