-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 2.62 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
{
"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": "tsc --build --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",
"postinstall": "yarn monorepo:check",
"monorepo:check": "manypkg check",
"monorepo:fix": "manypkg fix",
"predeploy-storybook": "build-storybook -s assets",
"deploy-storybook": "storybook-to-ghpages",
"build": "tsc --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.7.5",
"@changesets/cli": "^2.6.2",
"@manypkg/cli": "^0.11.1",
"@storybook/addon-storysource": "^5.2.8",
"@storybook/addons": "^5.2.8",
"@storybook/react": "^5.2.8",
"@storybook/source-loader": "^5.2.8",
"@storybook/storybook-deployer": "^2.8.1",
"@testing-library/react": "^10.0.0",
"@types/jest": "^25.2.0",
"@types/jsdom": "^12.2.3",
"@types/react": "^16.8.1",
"@types/react-dom": "^16.8.2",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"babel-loader": "^8.0.6",
"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": "^25.3.0",
"jest-serializer-html-string": "^1.0.1",
"jest-watch-typeahead": "^0.4.2",
"jsdom": "^14.0.0",
"markdown-toc": "^1.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"react": "^16.8.1",
"react-dom": "^16.8.4",
"react-stable-ref": "^0.4.0",
"rimraf": "^2.6.3",
"storybook-addon-performance": "^0.10.0",
"ts-jest": "^25.3.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.1"
}
}