-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 2.73 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
{
"name": "gradient-blaster",
"description": "Web-based tool to build gradient data for retro platforms using a visual editor",
"version": "0.1.0",
"author": "Graham Bates",
"license": "MIT",
"homepage": "https://github.com/grahambates/gradient-blaster#readme",
"keywords": [
"demoscene",
"demotool",
"amiga",
"atarist",
"atari",
"atari-st",
"atari-falcon",
"atari-ste"
],
"repository": {
"type": "git",
"url": "https://github.com/grahambates/gradient-blaster"
},
"type": "module",
"dependencies": {
"@reduxjs/toolkit": "^1.8.3",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-redux": "^8.0.2",
"redux-undo": "^1.0.1"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src",
"test": "jest",
"tsc": "tsc",
"analyze": "source-map-explorer build/assets/index.*.js",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"react-app",
"plugin:prettier/recommended"
],
"overrides": [
{
"files": [
"src/**/*.test.ts*"
],
"plugins": [
"jest"
],
"extends": [
"plugin:jest/recommended"
]
}
]
},
"jest": {
"transform": {
"^.+\\.jsx?$": [
"esbuild-jest",
{
"sourcemap": true,
"loaders": {
".test.jsx": "jsx"
}
}
],
"^.+\\.tsx?$": [
"esbuild-jest",
{
"sourcemap": true,
"loaders": {
".test.tsx": "tsx"
}
}
]
},
"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__/fileMock.js"
},
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.1",
"canvas": "^2.9.3",
"esbuild-jest": "^0.5.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"prettier": "3.3.3",
"source-map-explorer": "^2.5.2",
"typescript": "^4.7.4",
"vite": "^3.0.9"
}
}