-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
70 lines (70 loc) · 2.01 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
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"babel-jest": "^23.0.1",
"concurrently": "^3.5.1",
"husky": "^4.2.1",
"jest": "23.6.0",
"lerna": "8.0.0",
"lint-staged": "^10.0.4"
},
"engines": {
"node": "18.x"
},
"scripts": {
"dev": "concurrently \"cd packages/core && yarn build:watch\" \"cd packages/common-styles && yarn build:watch\" \"cd packages/playground && yarn storybook --quiet\"",
"build": "cd packages/common-styles && yarn build && cd ../core && yarn build",
"storybook": "cd packages/playground && yarn storybook",
"build-storybook": "cd packages/playground && yarn run build-storybook",
"deploy-storybook": "cd packages/playground && yarn run deploy",
"test": "jest --projects packages/*",
"bump": "lerna publish --exact --skip-npm --since \"v$(npm info @appearhere/bloom version)\"",
"test:travis": "yarn test --coverage --maxWorkers=4",
"now-build": "yarn build && yarn build-storybook"
},
"eslintConfig": {
"extends": "./eslint.js"
},
"dependencies": {
"upath": "^1.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit"
}
},
"resolutions": {
"js-yaml": "^3.13.1",
"braces": "^2.3.1",
"cryptiles": "^3.1.3",
"deep-extend": "^0.5.1",
"hoek": "^4.2.0",
"mixin-deep": "^1.3.2",
"set-value": "^2.0.1",
"fstream": "^1.0.12",
"handlebars": "^4.3.0",
"atob": "^2.1.0",
"lodash": "^4.7.12",
"url-parse": "^1.4.3",
"stringstream": "^0.0.6",
"merge": "^1.2.1",
"extend": "^2.0.2",
"tar": "^6.1.0",
"static-eval": "^2.0.2",
"debug": "^2.6.9",
"tough-cookie": "^2.3.3",
"no-case": "^2.3.2",
"is-my-json-valid": "^2.12.4",
"tunnel-agent": "^0.6.0",
"macaddress": "^0.2.9",
"webpack-dev-server": "^2.11.4",
"serialize-javascript": "^2.1.1",
"mem": "^4.0.0",
"**/optimist/**/minimist": "^0.2.1",
"**/mkdirp/**/minimist": "^0.2.1",
"kind-of": "^6.0.3"
}
}