-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
87 lines (87 loc) · 1.88 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
{
"name": "mopaint",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "http://github.com/1j01/mopaint.git"
},
"bugs": {
"url": "http://github.com/1j01/mopaint/issues"
},
"author": "Isaiah Odhner <isaiahodhner@gmail.com>",
"keywords": [
"paint",
"painting",
"image",
"images",
"image-editing",
"image-editor",
"mopaint",
"jspaint",
"canvas",
"editor",
"art",
"drawing",
"drawing-tool",
"symmetry",
"programming-system",
"multiism",
"composition"
],
"type": "module",
"dependencies": {
"@eslint/js": "^9.17.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"anypalette": "0.6.0",
"canvas": "^3.0.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "5.0.0",
"globals": "^15.14.0",
"hash.js": "1.1.7",
"immutable": "^4.3.0",
"is-png": "^2.0.0",
"localforage": "1.10.0",
"nanoid": "^3.1.30",
"png-chunk-text": "1.0.0",
"png-chunks-encode": "1.0.0",
"png-chunks-extract": "1.0.0",
"prop-types": "15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"typescript": "^5.7.2",
"ws": "^8.18.0"
},
"scripts": {
"lint-cspell": "cspell-cli lint .",
"lint-eslint": "eslint src/ eslint.config.mjs",
"lint-ts": "tsc --noEmit",
"lint": "npm-run-all --continue-on-error --serial lint-*",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy": "react-scripts build && node src/CNAME.js && gh-pages -d build"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"cspell-cli": "^8.17.0",
"npm-run-all": "^4.1.5"
},
"overrides": {
"react-scripts": {
"typescript": "^5.7.2"
}
}
}