-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.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
{
"name": "ollpll",
"displayName": "OLL/PLL Reminder",
"description": "Simple OLL/PLL algorithms reminder",
"version": "0.0.1",
"publisher": "buenon",
"author": {
"name": "Nadav Bueno",
"email": "buenonadav@gmail.com"
},
"license": "MIT",
"homepage": "https://buenon.github.io/ollpll",
"repository": {
"type": "git",
"url": "https://github.com/buenon/ollpll"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-player": "^2.10.1",
"react-router-dom": "^6.3.0",
"sass": "^1.54.4"
},
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.0.1",
"eslint": "^8.22.0",
"eslint-config-react-app": "^7.0.1",
"gh-pages": "^4.0.0",
"typescript": "^4.6.4",
"vite": "^3.0.7"
}
}