This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.6 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
{
"name": "volunteer-portal",
"version": "1.0.0",
"description": "AnimeCon Volunteer Portal",
"scripts": {
"build": "cross-env NODE_OPTIONS='--openssl-legacy-provider' NODE_PROD=1 webpack --mode production",
"build-api": "ts-json-schema-generator --path src/api/*.ts -j basic --additional-properties -o src/api/schema.json",
"serve": "cross-env NODE_OPTIONS='--openssl-legacy-provider' REACT_APP_API_HOST=https://stewards.team webpack serve",
"test": "jest"
},
"author": "Peter Beverloo <[email protected]>",
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/AnimeNL/volunteer-portal/issues"
},
"homepage": "https://github.com/AnimeNL/volunteer-portal#readme",
"sideEffects": false,
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/lab": "^5.0.0-alpha.117",
"@mui/material": "^5.11.6",
"@mui/x-date-pickers": "^5.0.16",
"idb-keyval": "^6.2.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.40",
"mui-sx": "^1.0.0",
"preact": "^10.11.3",
"preact-markdown": "^2.1.0",
"preact-render-to-string": "^5.2.6",
"preact-router": "^4.1.0",
"react-avatar-editor": "^13.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.4.0",
"@types/react": "^17.0.39",
"@types/react-avatar-editor": "^13.0.0",
"@types/react-dom": "^17.0.11",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"fake-indexeddb": "^4.0.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-fetch-mock": "^3.0.3",
"jest-mock-console": "^2.0.0",
"moment-locales-webpack-plugin": "^1.2.0",
"moment-timezone-data-webpack-plugin": "^1.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^29.0.5",
"ts-json-schema-generator": "^1.2.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"workbox-webpack-plugin": "^6.5.4"
},
"engines": {
"node": ">=18.0.0"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "jsdom",
"testRegex": "\\.test\\.(js|ts|tsx)$",
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"setupFiles": [
"./jest.setup.js"
]
}
}