This repository was archived by the owner on Dec 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 3.16 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
{
"name": "saas-js",
"description": "An open source ecosystem of patterns, tools and packages for SaaS products.",
"private": true,
"author": "Eelco Wiersma <[email protected]>",
"license": "MIT",
"homepage": "https://saas-js.dev/",
"repository": {
"type": "git",
"url": "https://github.com/saas-js/saas-js"
},
"keywords": [
"saas-js",
"saas",
"boilerplate",
"javascript",
"typescript",
"database",
"prisma",
"react"
],
"scripts": {
"w": "yarn workspace",
"dev:web": "yarn w website dev",
"changelog:gen": "ts-node scripts/changelog-generate.ts",
"changelog:write": "ts-node scripts/changelog-write.ts",
"changelog:commit": "git add CHANGELOG.md && git commit -am 'docs: add changelog' && git push",
"changeset:next": "yarn changeset pre enter next",
"version": "yarn changelog:gen && changeset version",
"publish:next": "yarn workspaces foreach --from '@saas-js/*' npm publish --access public --tag next",
"publish": "yarn workspaces foreach -p --from '@saas-js/*' npm publish && yarn changeset tag",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook && sb extract",
"prepare": "husky install",
"clean": "turbo run clean",
"test": "jest --maxWorkers=50%",
"test:watch": "jest --maxWorkers=25% --watch --onlyChanged",
"test:ci": "jest --color --runInBand --ci",
"lint": "turbo run lint",
"lint:staged": "lint-staged --allow-empty --config lint-staged.config.js",
"build:web": "yarn w website build",
"build:tokens": "chakra-cli tokens apps/website/src/theme",
"build:packages": "turbo run build --filter='./packages/*' --concurrency=5 --no-deps --continue",
"clean:packages": "turbo run clean"
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@chakra-ui/cli": "^2.1.8",
"@chakra-ui/react": "^2.4.9",
"@changesets/cli": "^2.25.2",
"@emotion/jest": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@jest/types": "^28.1.3",
"@manypkg/get-packages": "^1.1.3",
"@swc-node/jest": "^1.5.5",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"cross-env": "^7.0.3",
"date-fns": "^2.29.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-storybook": "^0.6.7",
"framer-motion": "^6.5.1",
"husky": "^8.0.2",
"hygen": "^6.2.11",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-watch-typeahead": "^1.1.0",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"turbo": "^1.6.3",
"typescript": "^4.9.3",
"zod": "^3.19.1"
},
"packageManager": "[email protected]"
}