-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "algorithm-arena",
"version": "1.0.0",
"type": "module",
"description": "A weekly programming challenge series by [vjeux](https://github.com/vjeux).",
"homepage": "https://thomaswright.github.io/algorithm-arena",
"scripts": {
"res:build": "rescript",
"res:clean": "rescript clean",
"res:dev": "rescript -w",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@rescript/core": "^1.5.2",
"@rescript/react": "^0.12.1",
"marked": "^13.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rescript": "^11.1.2",
"rescript-webapi": "^0.9.1",
"wouter": "^3.3.1"
},
"devDependencies": {
"@greenlabs/ppx-spice": "^0.2.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.15",
"gh-pages": "^6.1.1",
"postcss": "^8.4.28",
"tailwindcss": "^3.3.3",
"vite": "^5.0.6"
}
}