-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
{
"name": "hopalong-redux",
"version": "1.0.0",
"license": "MIT",
"private": true,
"dependencies": {
"auto-bind": "^4.0.0",
"chroma-js": "^2.1.0",
"framer-motion": "^2.6.6",
"lodash": "^4.17.21",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.11.0",
"react-player": "^2.7.2",
"reset.css": "^2.0.2",
"stats.js": "^0.17.0",
"styled-components": "^5.2.0",
"three": "^0.156.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@parcel/packager-raw-url": "2.9.3",
"@parcel/packager-xml": "2.9.3",
"@types/chroma-js": "^2.0.0",
"@types/lodash": "^4.14.161",
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/stats.js": "^0.17.0",
"@types/styled-components": "^5.1.3",
"@types/three": "^0.155.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"parcel": "^2.9.3",
"parcel-config-pwa-manifest": "^0.1.2",
"prettier": "^3.0.3",
"process": "^0.11.10",
"typescript": "^5.2.2"
},
"scripts": {
"build": "parcel build index.html",
"develop": "parcel index.html",
"start": "yarn develop",
"lint": "eslint --ext .ts,.tsx src/",
"typecheck": "tsc --noEmit"
},
"pwaManifest": {
"name": "Hopalong Redux",
"shortName": "Hopalong",
"theme": "#000000",
"generateIconOptions": {
"baseIcon": "./src/images/galaxy.png",
"sizes": [
192
],
"genFavicons": true
},
"display": "fullscreen"
}
}