generated from therockstorm/nx-template
-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
56 lines (56 loc) · 2.46 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
{
"name": "privacy-protect",
"description": "Life is too short for bullshit jobs. Wisely invest the 2,000 hours a year you spend at work. Use StartupIntel: discover tech startups that matter.",
"version": "0.0.1",
"private": true,
"type": "module",
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@poppanator/sveltekit-svg": "3.0.1",
"@sveltejs/adapter-vercel": "3.0.3",
"@sveltejs/kit": "1.27.2",
"@tailwindcss/forms": "0.5.6",
"@tailwindcss/typography": "0.5.10",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitejs/plugin-basic-ssl": "1.0.1",
"autoprefixer": "10.4.16",
"eslint": "8.52.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-sonarjs": "0.21.0",
"eslint-plugin-svelte3": "4.0.0",
"eslint-plugin-typescript-sort-keys": "2.3.0",
"eslint-plugin-yaml": "0.5.0",
"husky": "9.0.11",
"mdsvex": "0.11.0",
"npm-check-updates": "17.1.0",
"postcss": "8.4.31",
"prettier": "2.8.8",
"prettier-plugin-svelte": "2.10.1",
"svelte": "3.59.2",
"svelte-check": "3.5.2",
"tailwindcss": "3.3.5",
"ts-node": "10.9.1",
"tslib": "2.6.2",
"typescript": "5.2.2",
"vite": "4.5.5"
},
"scripts": {
"badges": "docker run --rm -v $PWD/results:/home/chrome/reports emazzotta/lighthouse-badges /bin/sh -c \"lighthouse-badges --urls https://www.privacyprotect.dev/\"",
"build": "npm run build:template && vite build",
"build:template": "npm run build:template:js && npm run build:template:css",
"build:template:css": "npx tailwindcss -c ./tailwind.template.config.cjs -i ./src/app.css -o ./src/assets/template.css --minify",
"build:template:js": "esbuild src/lib/template.ts --bundle --outfile=src/assets/template.js --target=chrome58,firefox57,safari11,edge16",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"dev": "npm run build:template && vite dev --https",
"format": "prettier --plugin-search-dir . --write .",
"gen:examples": "./scripts/examples.sh",
"lint": "npm run check && prettier --plugin-search-dir . --check . && eslint .",
"prepare": "husky install && svelte-kit sync && npm run build:template",
"preview": "vite preview",
"test:e2e": "npm run gen:examples",
"watch:template": "npm run build:template:js -- --watch & npm run build:template:css -- --watch"
}
}