This repository has been archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
96 lines (96 loc) · 3.08 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": "source",
"version": "3.12.0",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/@guardian/*",
"scripts/*"
],
"scripts": {
"build": "nx run-many --all --target=build",
"build:storybook": "NODE_ENV=production build-storybook -o dist",
"clean": "rm -rf dist && nx run-many --target=clean --all",
"create-icons": "yarn workspace @guardian/source-react-components create-icons",
"fix": "yarn lint:js --fix",
"lint": "npm-run-all lint:*",
"lint:js": "eslint . --ext .ts,.tsx,.js --cache",
"lint:styles": "stylelint packages/**/styles.ts",
"prepare": "husky install",
"release": "yarn clean && yarn build && changeset publish",
"test": "nx run-many --all --target=test",
"test:coverage": "nx run-many --target=test --all --coverage",
"tsc": "tsc",
"validate": "npm-run-all tsc lint test build e2e",
"e2e": "nx run-many --target=e2e --all",
"storybook": "start-storybook -p 6006"
},
"lint-staged": {
"package.json": "sort-package-json",
"*.{js,jsx,ts,tsx,css,md,json}": "prettier --write"
},
"prettier": "@guardian/prettier",
"resolutions": {
"trim": ">=0.0.3"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.24.4",
"@emotion/babel-plugin": "^11.10.2",
"@emotion/react": "11.0.0",
"@guardian/eslint-config": "^2.0.1",
"@guardian/eslint-config-typescript": "^1.0.9",
"@guardian/libs": "9.0.0",
"@guardian/prettier": "^2.1.4",
"@guardian/tsconfig": "^0.1.4",
"@nrwl/cli": "14.0.5",
"@nrwl/nx-cloud": "14.0.5",
"@nrwl/workspace": "14.0.5",
"@storybook/addon-a11y": "^6.5.13",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-docs": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/storybook-deployer": "^2.8.16",
"@storybook/testing-library": "^0.0.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.33",
"@types/react": "^18.0.22",
"babel-loader": "^8.2.2",
"chromatic": "^6.8.0",
"eslint": "^8.23.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-storybook": "^0.6.6",
"execa": "^5.1.1",
"husky": "^7.0.2",
"lint-staged": "^12.4.1",
"npm-run-all": "^4.1.5",
"nx": "14.0.5",
"prettier": "^2.3.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"regenerator-runtime": "^0.13.7",
"require-from-string": "^2.0.2",
"sort-package-json": "^1.48.1",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "~4.8.2",
"webpack": "^5.74.0"
},
"packageManager": "yarn@1.22.19"
}