-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
156 lines (156 loc) · 4.81 KB
/
Copy pathpackage.json
File metadata and controls
156 lines (156 loc) · 4.81 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "working-time-around",
"version": "1.3.1",
"description": "'Working time around' is a personal attendance and working time recording web application. It save records to browser's local storage, initially does not access any Web APIs. You can also set up and send your activities to Slack by setting the connection(you need to register the app in the workspace and create an Incoming Webhook. Please see [Incoming Webhooks](https://api.slack.com/incoming-webhooks).",
"author": "D.B.C.",
"license": "MIT",
"engines": {
"node": ">=20.17.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@parcel/babel-plugin-transform-runtime": "^2.9.2",
"@parcel/babel-preset-env": "^2.9.2",
"@parcel/config-default": "^2.9.2",
"@parcel/transformer-sass": "^2.9.2",
"@parcel/transformer-typescript-tsc": "^2.9.2",
"@redux-devtools/extension": "^3.2.5",
"@rmwc/types": "^8.0.8",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/assert": "^1.5.4",
"@types/intl": "^1.2.0",
"@types/jest": "^29.5.11",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.isequal": "^4.5.5",
"@types/react-dom": "^18.2.17",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"assert": "^2.0.0",
"babel-plugin-unassert": "^3.0.1",
"caniuse-lite": "^1.0.30001150",
"eslint": "^8.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^8.0.3",
"icss-utils": "^5.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.2.0",
"jest-html-reporters": "^3.1.5",
"jest-transform-css": "^6.0.1",
"lint-staged": "^15.2.0",
"parcel": "^2.9.2",
"postcss": "^8.4.31",
"postcss-custom-properties": "^13.3.2",
"postcss-import": "^15.1.0",
"postcss-url": "^10.1.3",
"prettier": "^3.1.0",
"process": "^0.11.10",
"react-intl": "^6.5.5",
"sass": "^1.32.8",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"unassert": "^2.0.2"
},
"dependencies": {
"@rmwc/button": "^8.0.8",
"@rmwc/checkbox": "^8.0.8",
"@rmwc/fab": "^8.0.8",
"@rmwc/grid": "^8.0.8",
"@rmwc/icon": "^8.0.8",
"@rmwc/select": "^8.0.8",
"@rmwc/snackbar": "^8.0.8",
"@rmwc/tabs": "^8.0.8",
"@rmwc/textfield": "^8.0.8",
"@rmwc/theme": "^8.0.8",
"@rmwc/top-app-bar": "^8.0.8",
"@rmwc/typography": "^8.0.8",
"core-js": "^3.6.5",
"dayjs": "^1.10.4",
"intl": "^1.2.5",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"path-to-regexp": "^8.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^7.2.2",
"react-router": "^6.30.3",
"react-router-dom": "^6.30.3",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"tslib": "^2.4.0",
"typescript-fsa": "^3.0.0",
"typescript-fsa-reducers": "^1.2.2",
"whatwg-fetch": "^3.6.2"
},
"scripts": {
"start": "npx parcel ./src/index.html --open",
"build": "npx parcel build ./src/index.html --no-source-maps",
"build:for-github-pages": "npx parcel build ./src/index.html --no-source-maps --public-url $BASE_PATH",
"lint": "eslint src/**",
"test": "jest",
"test:coverage": "jest --coverage",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix",
"jest --findRelatedTests",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.tsx?$": "./custom-transformer.js"
},
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy",
"\\.scss$": "identity-obj-proxy"
},
"reporters": [
"default",
[
"jest-html-reporters",
{
"publicPath": "./test-report",
"filename": "report.html"
}
]
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}