-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.45 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
{
"name": "badoo-styleguide",
"version": "2.1.3",
"description": "Badoo styleguide is sandbox environment to develop & document React UI components",
"author": "badoo",
"license": "MIT",
"bin": {
"badoo-styleguide": "./webpack-server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/badoo/styleguide.git"
},
"scripts": {
"deps": "yarn install --pure-lockfile",
"build": "yarn start --config=styleguide.config.js --buildDir=./dist/",
"start": "yarn deps && node ./webpack-server.js",
"lint": "eslint . --ext .js,.jsx",
"test": "jest",
"test-update": "jest -u",
"prettier-format": "prettier --write '**/*.{jsx,js,ts,tsx,json}'",
"styleguide": "yarn start --config=styleguide.config.js"
},
"dependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.4.0",
"@hot-loader/react-dom": "^16.8.4",
"babel-loader": "^8.2.2",
"cache-loader": "^4.1.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"js-yaml": "^3.13.1",
"loader-utils": "^2.0.0",
"react-docgen": "^5.4.0-alpha.0",
"react-docgen-typescript": "^1.20.5",
"react-hot-loader": "^4.13.0",
"styled-components": "^5.2.1",
"styled-normalize": "^8.0.7",
"ts-loader": "^8.0.12",
"typescript": "^4.1.3",
"typescript-react-function-component-props-handler": "^1.1.1",
"webpack": "^4.44.2",
"webpack-dev-middleware": "^5.0.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/react": "^17.0.0",
"coveralls": "^3.1.0",
"eslint": "^7.16.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.22.0",
"husky": "^4.2.3",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.2",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.13.0",
"react-test-renderer": "^16.13.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier-format && yarn test"
}
},
"homepage": "https://github.com/badoo/styleguide#readme",
"resolutions": {
"js-yaml": "^3.13.1",
"y18n": "^4.0.1",
"chokidar": "^3.0.0"
}
}