forked from portive/wysimark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.09 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
{
"name": "wysimark-monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "[email protected]",
"devDependencies": {
"@thesunny/script-utils": "^0.2.2",
"@types/node": "^18.11.18",
"concurrently": "^7.2",
"eslint": "^8.4.1",
"eslint-config-custom": "*",
"husky": "^8.0.0",
"pinst": "^3.0.0",
"prettier": "^2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"turbo": "^1.8.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@changesets/cli": "^2.26.1"
},
"scripts": {
"-- build": "# build",
"build": "turbo build",
"-- changesets": "# changesets",
"changeset": "is-git-clean && changeset",
"-- husky": "# husky git lifecycle hooks",
"husky:pre-commit": "yarn lint && yarn test",
"-- lifecycle": "# lifecycle",
"postinstall": "husky install",
"-- open": "# demo",
"open:react": "yarn workspace react-demo open",
"open:standalone": "yarn workspace standalone-demo open",
"open:vue": "yarn workspace vue-demo open",
"-- start": "# demo",
"start": "concurrently 'yarn start:react' 'yarn start:standalone' 'yarn start:vue'",
"start:react": "yarn workspace react-demo start:local",
"start:standalone": "yarn workspace standalone-demo start:local",
"start:vue": "yarn workspace vue-demo start:local",
"-- fix": "# fix",
"fix": "turbo fix",
"-- lint": "# lint",
"lint": "yarn turbo lint",
"lint:eslint": "yarn turbo lint:eslint",
"lint:prettier": "yarn turbo lint:prettier",
"lint:tsc": "yarn turbo lint:tsc",
"-- preset": "# Run preset from ~/presets",
"preset": "ts-node --project $HOME/presets/tsconfig.ts-node.json $HOME/presets/bin/index.ts",
"-- ready": "# ready",
"ready": "yarn turbo ready",
"-- release": "# release",
"release": "is-git-clean && turbo run lint test:once && changeset version && changeset publish",
"-- storybook": "# Run storybook app",
"storybook": "yarn workspace wysimark-storybook storybook",
"-- test": "# test",
"test": "yarn turbo test:once",
"-- end": "# end"
}
}