generated from navneetsharmaui/sveltekit-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 4.45 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "open-idle",
"description": "An open source idle game built on SvelteKit with Tailwindcss",
"version": "1.0.0",
"author": {
"name": "Rohan Richards",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"sveltekit",
"typescript",
"svelte",
"tailwind",
"SSR",
"idle game",
"open source"
],
"repository": {
"type": "git",
"url": "[email protected]:rohanrichards/open-idle.git"
},
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf .svelte-kit && rimraf build && rimraf .vercel_build_output",
"pre-commit": "lint-staged",
"check-env": "node --loader ts-node/esm scripts/js/check-env.ts",
"dev:sveltekit": "svelte-kit dev",
"dev:sveltekit:host": "svelte-kit dev --host=0.0.0.0",
"dev": "npm run check-env && npm run dev:sveltekit",
"dev:host": "npm run check-env && npm run dev:sveltekit:host",
"dev:open": "npm run dev --open",
"dev:host:open": "npm run dev --open --host",
"build:env:prod": "node --loader ts-node/esm scripts/js/environment.setup.ts --mode=prod --project=open-idle --arhitect-type=build --configurations=prod",
"build:env:dev": "node --loader ts-node/esm scripts/js/environment.setup.ts --mode=dev --project=open-idle --arhitect-type=build --configurations=dev",
"build:env:qa": "node --loader ts-node/esm scripts/js/environment.setup.ts --mode=qa --project=open-idle --arhitect-type=build --configurations=qa",
"build:env:local": "node --loader ts-node/esm scripts/js/environment.setup.ts --mode=local --project=open-idle --arhitect-type=build --configurations=local",
"build:sveltekit": "cross-env-shell svelte-kit build",
"build": "run-s build:env:prod build:sveltekit build:env:local",
"build:verbose:sveltekit": "cross-env-shell svelte-kit build --verbose",
"build:verbose": "run-s build:verbose:sveltekit",
"build:vercel": "cross-env ADAPTER=vercel OPTIONS='{}' npm run build",
"build:vercel:verbose": "cross-env ADAPTER=vercel OPTIONS='{}' npm run build:verbose",
"build:vercel:ssr": "cross-env ADAPTER=vercel OPTIONS='{}' SSR=true npm run build",
"build:vercel:verbose:ssr": "cross-env ADAPTER=vercel OPTIONS='{}' SSR=true npm run build:verbose",
"preview": "svelte-kit preview",
"preview:open": "npm run run preview --open",
"preview:host": "npm run run preview --host",
"preview:host:open": "npm run run preview --open --host",
"lint": "prettier --ignore-path .gitignore --check ./src/**/*.{js,svelte,ts} ./*.{ts,cjs,js} --plugin-search-dir=. && eslint ./src/**/*.{js,svelte,ts} --ignore-path .gitignore .eslintignore",
"lint:fix": "prettier --check ./src/**/*.{js,svelte,ts} ./*.{ts,cjs,js} --plugin-search-dir=. && eslint ./src/**/*.{js,svelte,ts} --ignore-path .gitignore .eslintignore",
"format": "prettier --ignore-path .gitignore --write ./src/**/*.{js,svelte,ts} ./*.{ts,cjs,js} --plugin-search-dir=.",
"eslint": "eslint ./src/**/*.{js,svelte,ts} --ignore-path .gitignore .eslintignore",
"eslint:fix": "eslint ./src/**/*.{js,svelte,ts} --ignore-path .gitignore .eslintignore --fix",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@sveltejs/adapter-vercel": "1.0.0-next.26",
"@sveltejs/kit": "1.0.0-next.142",
"@tailwindcss/typography": "^0.5.7",
"@types/node": "^16.7.2",
"@types/node-fetch": "^2.5.12",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"autoprefixer": "^10.3.3",
"cross-env": "^7.0.3",
"cssnano": "^5.0.6",
"cssnano-preset-advanced": "^5.1.4",
"dotenv": "^10.0.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-svelte3": "^3.4.1",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"nprogress": "^0.2.0",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"postcss-load-config": "^3.1.0",
"prettier": "~2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"rimraf": "^3.0.2",
"svelte": "^3.52.0",
"svelte-check": "^2.2.5",
"svelte-loader": "^3.1.2",
"svelte-preprocess": "^4.7.4",
"tailwindcss": "^3.2.2",
"ts-node": "^10.2.1",
"tslib": "^2.0.0",
"typescript": "^4.0.0"
},
"type": "module",
"engines": {
"node": ">= 14.16.1"
}
}