-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.03 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.03 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
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
{
"name": "particle-simulator-react-p5",
"description": "Particle simulator effect made with React and p5.js",
"homepage": "https://im-rises.github.io/particle-simulator-react-p5-website",
"repository": "https://github.com/Im-Rises/particle-simulator-react-p5",
"version": "1.6.0",
"private": false,
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "dist/components/ParticleSimulator.js",
"files": [
"LICENSE",
"README.md",
"package.json",
"dist/components/ParticleSimulator.js",
"dist/components/ParticleSimulator.js.map",
"dist/components/ParticleSimulator.d.ts",
"dist/components/ParticleSimulator.d.ts.map",
"src/components/ParticleSimulator.tsx",
"dist/classes/Particle.js",
"dist/classes/Particle.js.map",
"dist/classes/Particle.d.ts",
"dist/classes/Particle.d.ts.map",
"src/classes/Particle.ts",
"dist/classes/Attractor.js",
"dist/classes/Attractor.js.map",
"dist/classes/Attractor.d.ts",
"dist/classes/Attractor.d.ts.map",
"src/classes/Attractor.ts",
"dist/constants/constant-particle-simulator.js",
"dist/constants/constant-particle-simulator.js.map",
"dist/constants/constant-particle-simulator.d.ts",
"dist/constants/constant-particle-simulator.d.ts.map",
"src/constants/constant-particle-simulator.ts"
],
"keywords": [
"react",
"p5",
"particle",
"simulator",
"effect",
"react-p5",
"typescript",
"javascript"
],
"dependencies": {
"canvas": "^2.11.0",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-p5": "^1.3.33",
"sass": "^1.62.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"prepublish": "tsc"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"xo",
"xo-react",
"xo-typescript"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.12",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-react": "^0.27.0",
"eslint-config-xo-typescript": "^0.56.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"react-scripts": "5.0.1",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"xo": {
"extends": "xo-react"
}
}