-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.76 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.76 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
{
"name": "unstablerust",
"description": "Explore and compare the unstable features between versions of the Rust programming language.",
"author": "Christian Sdunek <me@systemcluster.me>",
"version": "0.1.0",
"license": "BSD-2-Clause",
"private": true,
"engines": {
"node": ">=18"
},
"type": "module",
"scripts": {
"build": "next build",
"start": "concurrently npm:start:dev",
"start:dev": "next dev",
"start:prod": "next start",
"check": "concurrently npm:check:lint",
"check:lint": "next lint",
"clean": "rimraf build"
},
"dependencies": {
"@builder.io/partytown": "^0.10.3",
"@emotion/cache": "^11.14.0",
"@emotion/is-prop-valid": "^1.4.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@floating-ui/react": "^0.27.19",
"@remixicon/react": "^4.9.0",
"@theme-ui/core": "^0.17.4",
"@vercel/analytics": "^2.0.1",
"highlight.js": "^11.11.1",
"next": "16.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-is": "^19.2.4",
"typescript": "^6.0.2",
"user-agent-data-types": "^0.4.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^16.2.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"browserslist": "^4.28.1",
"concurrently": "^9.2.1",
"eslint": "^10.1.0",
"eslint-config-next": "^16.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-compat": "^7.0.1",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-unicorn": "^63.0.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3"
}
}