-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.54 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
{
"name": "@prosopo/prosopo-marketing-website",
"version": "1.0.0",
"type": "module",
"description": "Prosopo Marketing Website",
"scripts": {
"clean": "del dist",
"dev:postcss": "postcss src/_assets/stylesheets/*.css -o src/static/styles.min.css --watch --verbose",
"dev:scripts": "esbuild src/_assets/scripts/app.js --bundle --watch --outfile=src/static/app.min.js",
"dev:11ty": "eleventy --serve --port 8081 --watch --config .eleventy.cjs",
"build:postcss": "NODE_ENV=production postcss src/_assets/stylesheets/styles.css -o src/_includes/styles.min.css",
"build:11ty": "ELEVENTY_ENV=production eleventy --config .eleventy.cjs",
"build:scripts": "esbuild src/_assets/scripts/app.js --bundle --minify --outfile=dist/static/app.min.js",
"start": "run-p dev:*",
"build": "run-s clean build:*"
},
"author": "Prosopo Limited",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "v3.0.0-alpha.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@eslint/eslintrc": "^3.0.2",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-wasm": "^6.2.2",
"@tailwindcss/typography": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.15",
"del-cli": "^4.0.1",
"esbuild": "^0.14.11",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-absolute-imports-only": "^1.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unused-imports": "^3.1.0",
"html-minifier": "^4.0.0",
"luxon": "^2.3.0",
"npm-run-all": "^4.1.5",
"nunjucks-date-filter": "^0.1.1",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-import": "^14.0.2",
"prettier": "^3.2.5",
"rollup-plugin-import-css": "^3.5.0",
"rollup-plugin-natives": "^0.7.8",
"rollup-plugin-visualizer": "^5.12.0",
"tailwind": "^4.0.0",
"typescript": "^5.3.3",
"vite": "^4.5.2",
"vite-plugin-filter-replace": "0.1.12",
"vite-plugin-no-bundle": "^3.0.0",
"vite-plugin-static-copy": "^0.17.0",
"vite-tsconfig-paths": "^4.3.1"
},
"dependencies": {
"tailwindcss": "^3.3.3"
}
}