-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.05 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.05 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
{
"name": "portfolio",
"type": "module",
"version": "2.0.2",
"description": "",
"main": "./src/js/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/joetm/jonaso.de.git"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"sync": "aws s3 sync ./dist/portfolio s3://www.komasurfer.com/portfolio",
"invalidate": "./invalidate.sh",
"test": "jest",
"test:watch": "jest --watch"
},
"jest": {
"setupTestFrameworkScriptFile": "node_modules/jest-enzyme/lib/index.js",
"unmockedModulePathPatterns": [
"react",
"enzyme",
"jasmine-enzyme"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"roots": [
"src"
]
},
"keywords": [
"portfolio"
],
"author": "JO",
"license": "ISC",
"bugs": {
"url": "https://github.com/joetm/jonaso.de/issues"
},
"homepage": "https://github.com/joetm/jonaso.de#readme",
"devDependencies": {
"@vitejs/plugin-react-refresh": "^1.3.6",
"enzyme": "^3.11.0",
"flow-bin": "^0.48.0",
"jasmine-core": "^2.8.0",
"jasmine-enzyme": "^7.1.2",
"jest": "^29.5.0",
"jest-enzyme": "^7.1.2",
"karma": "^6.4.1",
"react-test-renderer": "^18.2.0",
"typescript": "^2.6.2",
"vite": "^4.3.3",
"vite-plugin-environment": "^1.1.3"
},
"BAK": {
"react-addons-test-utils": "^15.6.2",
"react-click-outside": "^2.3.1",
"react-dom": "^15.7.0",
"react-icons": "^2.2.7",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"react-select": "^1.1.0",
"whatwg-fetch": "^2.0.3",
"react-tap-event-plugin": "^2.0.1"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.11.16",
"foundation-sites": "^6.4.3",
"react": "^18.2.0",
"react-redux": "^8.0.5"
}
}