forked from picocss/picocss.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.81 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@picocss/picocss.com",
"version": "0.0.1",
"author": "Lucas Larroche",
"homepage": "https://picocss.com",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s 'build:*' --silent && remix build",
"build:sort-scss": "postcss --config app/styles/scss ./app/styles/**/*.scss --replace",
"build:build-css": "sass --load-path=node_modules/@picocss/pico/scss/ app/styles/scss/:app/styles/css/",
"build:autoprefix": "postcss --config app/styles/css --replace app/styles/css/*.css",
"build:minify": "cleancss -O1 --with-rebase --batch --batch-suffix '' app/styles/css/*.css app/styles/css/**/*.css !app/styles/css/custom-themes/*.css !app/styles/css/extracts/*.css",
"build:code-snippets": "run-s 'build:code-snippets:*' --silent",
"build:code-snippets:create-folder": "node scripts/create-code-snippets-folder",
"build:code-snippets:copy-snippets": "node scripts/copy-code-snippets.js",
"dev": "remix build && run-p 'dev:*'",
"dev:remix": "remix watch",
"dev:recompile-css-then-watch": "run-s 'build:build-css' 'build:autoprefix' 'dev:watch'",
"dev:watch": "run-p 'dev:watch:*'",
"dev:watch:prettier": "onchange 'app/**/*.{js,jsx,ts,tsx,scss}' -- prettier --write --loglevel silent {{changed}}",
"dev:watch:sort-scss": "onchange 'app/styles/**/*.scss' -- postcss --config app/styles/scss {{changed}} --replace",
"dev:watch:build-css": "sass --load-path=node_modules/@picocss/pico/scss/ app/styles/scss/:app/styles/css/ --watch",
"dev:watch:autoprefix": "onchange 'app/styles/css/*.css' -- postcss --config app/styles/css {{changed}} --replace",
"dev:watch:code-snippets": "onchange -k --await-write-finish 3000 'app/styles/css/**/*.css' -- run-s 'build:code-snippets:copy-snippets'",
"dev:wrangler": "cross-env NODE_ENV=development npm run wrangler",
"start": "cross-env NODE_ENV=production npm run wrangler",
"wrangler": "wrangler pages dev ./public",
"typecheck": "tsc",
"prebuild:sort-scss": "echo '[@picocss/picocss.com] ✨ Lint'",
"prebuild:build-css": "echo '[@picocss/picocss.com] ✨ Compile'",
"prebuild:autoprefix": "echo '[@picocss/picocss.com] ✨ Autoprefix'",
"prebuild:minify": "echo '[@picocss/picocss.com] ✨ Minify'",
"prebuild:code-snippets": "echo '[@picocss/picocss.com] ✨ Code snippets'"
},
"dependencies": {
"@fontsource/figtree": "4.5.3",
"@fontsource/fira-code": "4.5.13",
"@makotot/ghostui": "2.0.0",
"@remix-run/cloudflare": "^1.15.0",
"@remix-run/cloudflare-pages": "^1.15.0",
"@remix-run/react": "^1.15.0",
"cross-env": "^7.0.3",
"html-react-parser": "3.0.15",
"isbot": "^3.6.8",
"react": "^18.2.0",
"react-copy-to-clipboard": "5.1.0",
"react-div-100vh": "0.7.0",
"react-dom": "^18.2.0",
"react-helmet-async": "1.3.0",
"react-scrollbar-size": "5.0.0",
"react-syntax-highlighter": "15.5.0",
"use-debounce": "9.0.3",
"use-local-storage-state": "18.2.1",
"use-prefers-color-scheme": "1.1.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.3.1",
"@picocss/pico": "^2.0.0-alpha1",
"@remix-run/dev": "^1.15.0",
"@remix-run/eslint-config": "^1.15.0",
"@types/react": "^18.0.32",
"@types/react-dom": "^18.0.8",
"autoprefixer": "^10.4.14",
"caniuse-lite": "1.0.30001473",
"clean-css-cli": "^5.6.2",
"copyfiles": "2.4.1",
"css-declaration-sorter": "^6.4.0",
"eslint": "^8.37.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.7",
"renamer": "4.0.0",
"sass": "^1.60.0",
"typescript": "^5.0.3",
"wrangler": "^2.13.0"
},
"engines": {
"node": ">=16.13"
},
"browserslist": [
">= 0.5%",
"last 2 major versions",
"not dead",
"not ie > 0"
]
}