This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "launcher-ui-tooling",
"version": "1.0.0",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/launcher-component"
],
"scripts": {
"clean": "rm -rf build && find . -type d -name \"node_modules\" -exec rm -rf {} +",
"test": "jest --silent -w=2",
"test:verbose": "jest",
"libs:publish": "lerna publish --conventional-commits --yes && yarn comp:storybook:publish",
"build": "yarn comp:build",
"comp:build": "yarn workspace @launcher/component build",
"comp:test": "yarn workspace @launcher/component test",
"comp:storybook": "yarn workspace @launcher/component storybook",
"comp:storybook:build": "yarn workspace @launcher/component storybook:build",
"comp:storybook:publish": "yarn comp:storybook:build && yarn workspace @launcher/component storybook:publish"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/jest": "24.0.17",
"@types/lodash": "4.14.136",
"@types/node": "11.13.4",
"codecov": "3.5.0",
"eslint": "6.1.0",
"ghooks": "2.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "24.8.0",
"lerna": "3.16.4",
"rollup": "1.16.6",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-filesize": "6.1.1",
"rollup-plugin-peer-deps-external": "2.2.0",
"rollup-plugin-postcss": "2.0.3",
"rollup-plugin-tslint": "0.2.2",
"rollup-plugin-typescript2": "0.21.2",
"surge": "0.21.3",
"ts-jest": "24.0.2",
"tslint": "5.18.0",
"tslint-react": "4.0.0",
"typescript": "3.4.3"
},
"dependencies": {
"lodash": "4.17.14"
},
"resolutions": {
"lodash": "4.17.14"
}
}