-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.56 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.56 KB
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": "service-development-toolkit",
"version": "1.1.1",
"description": "Toolkit for button applications",
"main": "index.js",
"repository": "git@github.com:button-inc/service-development-toolkit.git",
"author": "Button Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@storybook/addon-a11y": "^6.1.7",
"@storybook/addon-actions": "^6.1.6",
"@storybook/addon-essentials": "^6.1.6",
"@storybook/addon-links": "^6.1.6",
"@storybook/react": "^6.1.6",
"@storybook/storybook-deployer": "^2.8.7",
"@testing-library/react": "^11.2.2",
"@types/jest-axe": "^3.5.1",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.2.1",
"babel-plugin-styled-components": "^1.11.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"glob": "^7.1.6",
"happo-plugin-storybook": "^3.0.0",
"happo.io": "^8.2.0",
"html-react-parser": "^1.2.4",
"jest": "^26.6.3",
"jest-axe": "^4.1.0",
"lerna": "^5.0.0",
"next-session": "^3.4.0",
"prettier": "^2.1.2",
"randomstring": "^1.1.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-html-parser": "^2.0.2",
"regenerator-runtime": "^0.13.7",
"typescript": "^4.0.5",
"webpack": "^5.5.1",
"yargs": "^16.1.1"
},
"scripts": {
"format": "git ls-files '*.js' '*.jsx' '*.ts' '*.tsx' | xargs prettier --write",
"lint": "git ls-files '*.js' '*.jsx' '*.ts' '*.tsx' | xargs yarn eslint",
"bootstrap": "lerna bootstrap",
"llink": "lerna link",
"build": "lerna run build",
"clean": "lerna clean",
"test:jest": "lerna run test:jest --stream",
"pre-publish": "lerna run pre-publish",
"sync-version": "node scripts/sync-version.js",
"storybook:bcgov": "start-storybook -p 6006 -c packages/bcgov-theme/.storybook",
"storybook:button": "start-storybook -p 6006 -c packages/button-theme/.storybook",
"build-storybook:bcgov": "build-storybook -c packages/bcgov-theme/.storybook",
"build-storybook:button": "build-storybook -c packages/button-theme/.storybook",
"deploy-storybook": "storybook-to-ghpages --packages packages --branch=storybook",
"happo": "lerna run happo",
"happo-ci-github-actions": "lerna run happo-ci-github-actions"
},
"private": true,
"resolutions": {
"**/@babel/core": "^7.10.2",
"**/@babel/plugin-proposal-class-properties": "^7.10.1",
"**/@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"**/@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
"**/@babel/plugin-proposal-optional-chaining": "^7.10.1",
"**/@babel/plugin-transform-destructuring": "npm:@minh.nguyen/plugin-transform-destructuring@^7.5.2",
"**/@babel/plugin-transform-runtime": "^7.10.1",
"**/@babel/preset-env": "^7.10.2",
"**/@babel/preset-react": "^7.10.1",
"**/@babel/runtime": "^7.10.2",
"**/@babel/types": "^7.10.2",
"**/hoist-non-react-statics": "^3.3.2",
"**/next/terser": "^4.1.2",
"**/typescript": "4.0.5",
"**/react": "17.0.1",
"**/react-dom": "17.0.1"
},
"workspaces": {
"packages": [
"packages/*"
]
}
}