-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.17 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.17 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
{
"name": "@trousers/repo",
"version": "2.1.1",
"private": true,
"license": "MIT",
"repository": "https://github.com/danieldelcore/trousers",
"workspaces": [
"packages/*"
],
"scripts": {
"prestart": "yarn build",
"start": "run-p start:*",
"start:watch": "preconstruct watch",
"start:stories": "start-storybook -p 9000 -s assets",
"clean": "rm -rf node_modules/.cache && rimraf packages/**/{tsconfig.tsbuildinfo,lib,dist}",
"validate": "yarn build && yarn lint && yarn monorepo:check && preconstruct validate",
"postinstall": "preconstruct dev && yarn monorepo:check",
"monorepo:check": "manypkg check",
"monorepo:fix": "manypkg fix && preconstruct fix",
"types:check": "tsc --noEmit --skipLibCheck",
"predeploy-storybook": "build-storybook -s assets",
"deploy-storybook": "storybook-to-ghpages",
"build": "yarn clean && preconstruct build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint --config .eslintrc.js --ext tsx,ts ./packages/**/src ./examples",
"lint:fix": "yarn lint -- --fix",
"docs:update": "markdown-toc -i ./README.md --maxdepth 3",
"prerelease": "yarn lint && yarn monorepo:check && yarn test",
"release": "yarn build && yarn changeset publish"
},
"dependencies": {
"@babel/core": "^7.12.7",
"@babel/parser": "^7.12.10",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@changesets/cli": "^2.6.2",
"@manypkg/cli": "^0.11.1",
"@preconstruct/cli": "^2.0.0",
"@storybook/addon-storysource": "6.1.18",
"@storybook/addons": "6.1.18",
"@storybook/react": "6.1.18",
"@storybook/source-loader": "6.1.18",
"@storybook/storybook-deployer": "^2.8.7",
"@testing-library/react": "^10.0.0",
"@types/babel-plugin-macros": "^2.8.4",
"@types/jest": "^26.0.15",
"@types/jsdom": "^12.2.3",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/stylis": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"babel-loader": "^8.0.6",
"babel-plugin-macros": "^3.0.0",
"eslint": "^5.15.1",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.5.0",
"jest": "^26.6.0",
"jest-serializer-html-string": "^1.0.1",
"jest-watch-typeahead": "^0.4.2",
"jsdom": "^16.4.0",
"markdown-toc": "^1.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-stable-ref": "^0.4.0",
"rimraf": "^2.6.3",
"storybook-addon-performance": "^0.14.0",
"ts-jest": "^26.4.4",
"ts-loader": "^6.2.1",
"typescript": "^4.1.3"
},
"preconstruct": {
"packages": [
"packages/*"
]
}
}