-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 3.12 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/sage-*",
"docs"
],
"devDependencies": {
"@arkweid/lefthook": "0.7.2",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"commitizen": "^4.2.2",
"dotenv": "8.2.0",
"eslint": "7.32.0",
"handlebars": "^4.7.7",
"lerna": "^4.0",
"npm-run-all": "4.1.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "5.2.0",
"semver": "^7.3.2",
"style-dictionary": "^3.0.2",
"stylelint": "^13.7.2",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^2.0.0",
"webpack": "^4.44.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kajabi/sage-lib.git"
},
"license": "MIT",
"scripts": {
"bootstrap": "yarn lerna bootstrap",
"branches:update": "bin/branches.sh true",
"bridge:kajabi-products": "bin/bridge.sh true",
"bridge:kajabi-products:status": "bin/bridge.sh status",
"bridge:kajabi-products:destroy": "bin/bridge.sh false",
"build": "yarn npm-run-all build:*",
"build:sd": "yarn style-dictionary build --config ./style-dictionary/config.js",
"build:assets": "cd packages/sage-assets && yarn build",
"build:react": "cd packages/sage-react && yarn build",
"build:system": "cd packages/sage-system && yarn build",
"commit": "yarn cz",
"docs": "cd docs && yarn start",
"docs:bundle": "bin/bundle.sh",
"docs:initialize": "yarn docs:bundle && cd docs && yarn install",
"external": "bin/local-link-frontend.sh false",
"gem:bump:type": "export SAGE_ORIGINAL_VER=$(bin/gem-version.sh); node bin/js/gem-bump-type.js",
"lint": "yarn npm-run-all lint:*",
"lint:assets": "yarn stylelint 'packages/sage-assets/lib/stylesheets/**/*.{css,scss}' --max-warnings 0",
"lint:docs": "cd docs && yarn lint",
"lint:react": "cd packages/sage-react && yarn lint",
"local": "bin/local-link-frontend.sh true",
"sassdocs": "cd packages/sage-assets && yarn run start",
"setup": "bin/setup.sh",
"setup:init": "yarn install && yarn docs:initialize",
"start": "NODE_OPTIONS=--openssl-legacy-provider yarn npm-run-all --parallel build:sd watch docs storybook sassdocs",
"storybook": "cd packages/sage-react && yarn storybook",
"test": "yarn npm-run-all test:prod:*",
"test:dev": "yarn npm-run-all test:dev:*",
"test:dev:react": "cd packages/sage-react && yarn test:dev",
"test:prod:react": "cd packages/sage-react && yarn test",
"ver:sage": "node bin/js/package-version.js sage",
"ver:sage:gem": "bin/gem-version.sh",
"ver:assets": "node bin/js/package-version.js sage-assets",
"ver:react": "node bin/js/package-version.js sage-react",
"ver:system": "node bin/js/package-version.js sage-system",
"watch": "yarn npm-run-all --parallel watch:*",
"watch:assets": "cd packages/sage-assets && yarn build:watch",
"watch:react": "cd packages/sage-react && yarn build:watch",
"watch:system": "cd packages/sage-system && yarn build:watch"
},
"dependencies": {
"@pine-ds/icons": "^8.0.0"
}
}