-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.69 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
{
"name": "js-pollock",
"author": "Matt Jarrett",
"license": "MIT",
"description": "Single Page App for computer generated art inspired by Jackson Pollock",
"version": "0.14.0",
"repository": {
"type": "git",
"url": "[email protected]:cujarrett/js-pollock.git"
},
"scripts": {
"commit": "git-cz",
"start": "react-scripts start",
"lint": "eslint .",
"fix-lint": "eslint . --fix",
"ci": "npm run lint",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"contributors": [
{
"name": "Matt Jarrett",
"web": "https://mattjarrett.dev"
}
],
"dependencies": {
"@emotion/react": "~11.11.4",
"@emotion/styled": "~11.11.5",
"@mui/icons-material": "~5.15.16",
"@mui/material": "~5.15.16",
"@testing-library/jest-dom": "~6.4.5",
"@testing-library/react": "~15.0.6",
"clamp": "~1.0.1",
"color-luminance": "~2.1.0",
"file-saver": "~2.0.5",
"font-awesome": "~4.7.0",
"gl-vec2": "~1.3.0",
"lerp": "~1.0.3",
"new-array": "~1.0.0",
"npm": "~10.7.0",
"prop-types": "~15.8.1",
"raf-loop": "~1.1.3",
"react": "~18.3.1",
"react-dom": "~18.3.1",
"react-scripts": "~5.0.1",
"seed-random": "~2.2.0",
"simplex-noise": "~4.0.1",
"smoothstep": "~1.0.1",
"web-vitals": "~3.5.2"
},
"devDependencies": {
"@babel/core": "~7.24.5",
"@babel/eslint-parser": "~7.24.5",
"@commitlint/cli": "~19.3.0",
"@commitlint/config-conventional": "~19.2.2",
"@semantic-release/changelog": "~6.0.3",
"@semantic-release/commit-analyzer": "~12.0.0",
"@semantic-release/exec": "~6.0.3",
"@semantic-release/git": "~10.0.1",
"@semantic-release/github": "~10.0.3",
"@semantic-release/npm": "~12.0.0",
"@semantic-release/release-notes-generator": "~13.0.0",
"commitizen": "~4.3.0",
"cz-conventional-changelog": "~3.3.0",
"eslint-config-react-app": "~7.0.1",
"eslint-plugin-react": "~7.34.1",
"eslint-plugin-react-hooks": "~4.6.2",
"husky": "~9.0.11"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"Jackson Pollock",
"Computer Generated Art"
]
}