-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.3 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
{
"private": true,
"name": "clearness",
"description": "Learn to code Smart Contracts on Bitcoin thanks to Stacks and the Clarity Language. Learn Web3, DAO, NFT etc",
"license": "MIT",
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -i ./app/app.css -o ./app/tailwind.css --minify",
"dev": "concurrently \"npm run dev:css\" \"remix dev \"",
"dev:css": "tailwindcss -i ./app/app.css -o ./app/tailwind.css --watch",
"postinstall": "remix setup node",
"test": "playwright test ./tests",
"generate-og": "playwright test ./tools/opengraph/generate-og-images.test.ts",
"generate-sitemap": "node ./tools/generate-sitemap.mjs"
},
"dependencies": {
"@remix-run/react": "^1.1.3",
"@remix-run/serve": "^1.1.3",
"@remix-run/vercel": "^1.1.3",
"accept-language-parser": "^1.5.0",
"marked": "^4.0.12",
"prism-themes": "^1.9.0",
"react": "18.2",
"react-dom": "18.2",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "2.0",
"rehype-highlight": "^6.0.0",
"rehype-plugin-image-native-lazy-loading": "^1.2.0",
"rehype-slug": "^5.0.1",
"remark-emoji": "^3.0.2",
"remark-gfm": "^3.0.1",
"remix": "^1.1.3",
"tiny-invariant": "^1.2.0",
"uninstall": "^0.0.0"
},
"devDependencies": {
"@mapbox/rehype-prism": "github:hugocaillard/rehype-prism",
"@playwright/test": "^1.20.0",
"@remix-run/dev": "^1.1.3",
"@tailwindcss/typography": "^0.5.0",
"@types/accept-language-parser": "^1.5.3",
"@types/mapbox__rehype-prism": "^0.8.0",
"@types/marked": "^4.0.2",
"@types/react": "18.0",
"@types/react-dom": "18.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"concurrently": "^7.0.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"front-matter": "^4.0.2",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.15",
"typescript": "^4.1.2"
},
"engines": {
"node": "v16.x",
"npm": "v8.x"
},
"sideEffects": false,
"volta": {
"node": "16.15.0",
"npm": "8.10.0"
}
}