-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
96 lines (96 loc) · 3.91 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
{
"name": "@basalt/bedrock-monorepo",
"license": "GPL-2.0-or-later",
"private": true,
"scripts": {
"build:bedrock": "FORCE_COLOR=1 lerna run build --scope @basalt/bedrock",
"build:pkgs": "FORCE_COLOR=1 lerna run build --no-private --ignore @basalt/bedrock",
"build:private": "lerna run --stream --bail --concurrency 1 build --scope @basalt/bedrock-example*",
"build:storybook": "lerna run build --stream --bail --scope @basalt/bedrock-storybook",
"build": "run-s build:pkgs build:bedrock",
"build:all": "run-s build build:private",
"cypress:run": "cd cypress && yarn cypress:run",
"cypress:open": "cd cypress && yarn cypress:open",
"watch": "FORCE_COLOR=1 lerna run watch --parallel --no-private",
"clean": "lerna clean --yes && rm -rf node_modules",
"cli:test": "rm -rf examples/create-bedrock-results && cd examples && ../node_modules/.bin/create-bedrock create-bedrock-results && cd .. && yarn && cd examples/create-bedrock-results && yarn start",
"commit": "git-cz",
"dashboard": "webpack-dashboard",
"jest": "jest",
"lerna:publish": "lerna publish --verify-access",
"lint:js": "eslint --ext .js,.jsx .",
"lint:js:fix": "yarn lint:js --fix",
"lint:style": "stylelint '**/*.{js,jsx}'",
"lint:style:fix": "stylelint '**/*.{js,jsx}' --fix",
"open:prs": "open https://github.com/basaltinc/bedrock/pulls",
"open:pr": "open https://github.com/basaltinc/bedrock/compare",
"open:repo": "open https://github.com/basaltinc/bedrock",
"open:ci": "open https://circleci.com/gh/basaltinc/bedrock",
"pick": "pick-npm-run-all",
"reset": "yarn clean && yarn install --silent && FORCE_COLOR=1 run-s --print-label build:*",
"serve:simple": "cd examples/simple && yarn serve",
"test": "run-s lint:style lint:js jest test:bedrock test:examples test:cypress",
"test:bedrock": "lerna run --stream --bail --scope @basalt/bedrock test",
"test:cypress": "start-server-and-test serve:simple http://localhost:3999 cypress:run",
"test:examples": "run-s test:ex-1 test:ex-2 test:ex-3",
"test:ex-1": "lerna run --stream --bail --scope @basalt/bedrock-example-design-token-mania test",
"test:ex-2": "lerna run --stream --bail --scope @basalt/bedrock-example-simple test",
"test:ex-3": "lerna run --stream --bail --scope @basalt/bedrock-example-multi-templates test",
"up": "yarn upgrade-interactive --latest",
"uuid": "node -e \"process.stdout.write(require('uuid/v4')()) \" | pbcopy && echo 'uuid copied' "
},
"workspaces": {
"packages": [
"bedrock",
"cypress",
"apps/*",
"examples/*",
"components/*",
"packages/*"
],
"nohoist": [
"@basalt/bedrock-storybook/babel-core",
"@basalt/bedrock-storybook/babel-core/**",
"@basalt/bedrock-storybook/babel-register",
"@basalt/bedrock-storybook/babel-register/**"
]
},
"config": {
"commitizen": {
"path": "cz-lerna-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/config-lerna-scopes": "^7.2.1",
"@types/jest": "^24.0.9",
"@types/node": "^8.0.0",
"babel-jest": "^24.3.0",
"color": "^3.0.0",
"commitizen": "^3.0.4",
"cz-lerna-changelog": "^2.0.1",
"eslint-plugin-cypress": "^2.2.1",
"husky": "^1.2.0",
"jest": "^24.1.0",
"lerna": "^3.6.0",
"lint-staged": "8.1.0",
"nodemon": "^1.18.8",
"npm-run-all": "^4.1.5",
"pick-npm-run-all": "^0.2.0",
"start-server-and-test": "^1.7.11",
"stylelint": "^9.5.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.1",
"typescript": "^3.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/basaltinc/bedrock"
},
"homepage": "https://getbedrock.com",
"bugs": {
"url": "https://github.com/basaltinc/bedrock/issues"
}
}