This repository was archived by the owner on Apr 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.91 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.91 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": "yubaba-repo",
"private": true,
"repository": "madou/yubaba",
"author": "Michael Dougall",
"license": "MIT",
"files": [
"dist/"
],
"scripts": {
"tdd": "jest --watch",
"build": "lerna run build",
"lint": "eslint --ext .tsx .",
"test": "jest",
"size": "lerna exec --ignore yubaba-common -- yarn size",
"pre-cut-version": "yarn test",
"postinstall": "yarn build && lerna link",
"cut-version": "yarn pre-cut-version && lerna publish --conventional-commits --skip-npm && yarn post-cut-version",
"cut-version-beta": "yarn pre-cut-version && lerna publish --skip-npm --npm-tag beta && yarn post-cut-version",
"post-cut-version": "git push && git push --tags",
"push-to-npm": "lerna exec --ignore yubaba-common -- npm publish",
"codecov": "echo \"not implemented\"",
"storybook": "start-storybook -p 6006",
"fix-duplicates": "yarn-tools fix-duplicates yarn.lock > fixed-yarn.lock && rm yarn.lock && mv fixed-yarn.lock yarn.lock && yarn install",
"docz": "docz dev",
"build-docs": "docz build"
},
"devDependencies": {
"@types/enzyme": "^3.1.13",
"@types/jest": "^23.3.2",
"@types/react": "^16.4.13",
"@types/react-body-classname": "^1.1.5",
"@types/react-dom": "^16.0.7",
"@types/react-router-dom": "^4.3.1",
"@types/sinon": "^5.0.2",
"@types/storybook-addon-jsx": "^5.3.1",
"@types/storybook__addon-links": "^3.3.2",
"@types/storybook__addon-notes": "^3.3.3",
"@types/storybook__react": "^3.0.9",
"babel-core": "^6.26.3",
"css-loader": "^1.0.0",
"docz": "^0.13.7",
"docz-theme-default": "^0.13.7",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-matchers": "^6.0.4",
"enzyme-to-json": "^3.3.3",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-typescript": "^0.12.0",
"jest": "^23.5.0",
"jest-enzyme": "^6.0.4",
"lerna": "^3.3.0",
"sinon": "^6.2.0",
"storybook-addon-jsx": "^5.4.0",
"ts-jest": "^23.1.4",
"ts-loader": "^5.0.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.1",
"typescript-eslint-parser": "^18.0.0",
"webpack": "^4.17.2",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.4",
"yarn-tools": "^0.4.1"
},
"resolutions": {
"ansi-styles": "^3.2.0"
},
"engines": {
"node": "^10.x.x",
"yarn": "^1.9.x"
},
"workspaces": [
"packages/*"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"setupTestFrameworkScriptFile": "<rootDir>test/setup.js",
"testRegex": "(/__tests__/.*.test*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}