-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.77 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
{
"name": "unstablerust",
"description": "Explore and compare the unstable features between versions of the Rust programming language.",
"author": "Christian Sdunek <[email protected]>",
"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.2",
"@emotion/cache": "^11.13.1",
"@emotion/is-prop-valid": "^1.3.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@floating-ui/react": "^0.26.28",
"@remixicon/react": "^4.5.0",
"@theme-ui/core": "^0.16.2",
"@vercel/analytics": "^1.4.0",
"highlight.js": "^11.10.0",
"next": "14.1.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"typescript": "^5.6.3",
"user-agent-data-types": "^0.4.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.18",
"@types/node": "^20.17.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"browserslist": "^4.24.2",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.18",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-unicorn": "^52.0.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.10"
}
}