-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
86 lines (86 loc) · 2.98 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
{
"name": "fullpower-stack",
"private": true,
"description": "a boiler plate for a cutting edge technologies",
"author": "Pavel 'PK' Kaminsky",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"clean": "turbo run clean",
"build": "turbo run build",
"dev": "turbo run dev --parallel --no-cache",
"dev:vite": "turbo run dev --parallel --no-cache --filter=@fullpower-stack/vite --filter=@fullpower-stack/express-backend",
"dev:nextjs": "turbo run dev --parallel --no-cache --filter=@fullpower-stack/nextjs --filter=@fullpower-stack/express-backend",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"test:watch": "turbo run test:watch",
"lint": "turbo run lint -- --fix --cache",
"format": "prettier --write \"**/*.{ts,tsx,md}\" --cache",
"prepare": "husky install",
"docker:build": "cross-env COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose -f docker-compose.yml build --parallel",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:artillery": "pnpm artillery run ./e2e/artillery-vite.yml",
"test:e2e": "playwright test",
"test:e2e:smoke": "pnpm test:e2e -g @smoke",
"test:e2e:visual": "pnpm test:e2e -g @visual",
"playwright:install": "playwright install --with-deps"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@fullpower-stack/eslint-config-custom": "workspace:*",
"@playwright/test": "^1.30.0",
"@storybook/addon-essentials": "7.0.0-alpha.54",
"@storybook/addon-interactions": "7.0.0-alpha.54",
"@storybook/addon-links": "7.0.0-alpha.54",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "7.0.0-alpha.54",
"@storybook/react-vite": "7.0.0-alpha.54",
"@storybook/testing-library": "0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@tsconfig/next": "^1.0.5",
"@tsconfig/node18": "^1.0.1",
"@tsconfig/vite-react": "^1.0.1",
"@types/node": "^17.0.45",
"@vitejs/plugin-react": "^3.0.1",
"artillery": "2.0.0-27",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.6.0",
"happy-dom": "^7.8.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"playwright": "^1.30.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.1.13",
"start-server-and-test": "^1.15.3",
"storybook": "7.0.0-alpha.54",
"ts-node-dev": "latest",
"turbo": "latest",
"vitest": "^0.25.8"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"dotenv": "^16.0.3",
"rimraf": "^3.0.2",
"tailwindcss": "^3.2.4",
"tsup": "^6.5.0",
"typescript": "5.0.0-beta",
"zod": "^3.20.2"
},
"repository": {
"type": "git",
"url": "https://github.com/kaminskypavel/fullpower-stack.git"
},
"packageManager": "[email protected]"
}