-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
106 lines (106 loc) · 3.63 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
{
"name": "screwmycode.in",
"version": "3.15.1",
"license": "MIT",
"author": {
"name": "Bamdad Sabbagh",
"email": "[email protected]",
"url": "https://www.bamdad.fr/"
},
"scripts": {
"build": "next build && pnpm build:post",
"build:post": "pnpm build:post:build-sitemap && pnpm build:post:remove-source-maps",
"build:post:build-sitemap": "next-sitemap",
"build:post:remove-source-maps": "find .next/static -type f -name \"*.map\" -exec rm {} \\;",
"coverage": "pnpm test:coverage",
"dev": "next dev",
"export": "next export",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"package:clean": "rimraf .next && rimraf node_modules",
"package:reinstall": "pnpm package:clean && pnpm",
"package:sort": "npx sort-package-json",
"start": "next start",
"test": "jest",
"test:coverage": "jest --coverage",
"test:experimental": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "jest --watch",
"test:watch:coverage": "jest --watch --coverage",
"test:watch:all": "jest --watchAll"
},
"dependencies": {
"@fontsource/noto-sans": "^5.1.0",
"@iconify/icons-mdi": "^1.2.48",
"@iconify/react": "^5.0.2",
"@juggle/resize-observer": "^3.4.0",
"@react-spring/web": "^9.7.5",
"@react-three/fiber": "^8.17.9",
"can-autoplay": "^3.0.2",
"hoist-non-react-statics": "^3.3.2",
"next": "^14.2.14",
"next-replace-url": "^1.0.3",
"next-seo": "^6.6.0",
"next-sitemap": "^4.2.3",
"raf": "^3.4.1",
"react": "^18.3.1",
"react-device-detect": "^2.2.3",
"react-dom": "^18.3.1",
"react-use-measure": "^2.1.1",
"soundcloud-scraper": "^5.0.3",
"speed-to-percentage": "^1.2.1",
"speed-to-semitones": "^1.3.1",
"styled-components": "^6.1.13",
"three": "^0.167.1",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/eslint-parser": "^7.25.7",
"@babel/eslint-plugin": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@react-three/eslint-plugin": "^0.1.1",
"@stylistic/eslint-plugin": "^2.9.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/gl-react": "^3.15.8",
"@types/gl-react-dom": "^3.15.8",
"@types/gl-react-image": "^3.2.4",
"@types/grecaptcha": "^3.0.9",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@types/three": "^0.167.2",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"babel-jest": "^29.7.0",
"babel-plugin-styled-components": "^2.1.4",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsdoc": "^50.3.1",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-testing-library": "^6.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sass": "^1.79.4",
"sass-reset": "^1.0.4",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
}
}