-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.99 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.99 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@f-design/component-library",
"version": "2.1.0",
"description": "A component library built and maintained by Featherweight Design",
"main": "dist/bundle.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/featherweight-design/component-library#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/featherweight-design/component-library.git"
},
"bugs": {
"url": "https://github.com/featherweight-design/component-library/issues"
},
"files": [
"dist/**/*"
],
"keywords": [],
"author": "Featherweight Design",
"license": "MIT",
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "npx webpack",
"postbuild": "mkdir ./dist/scss && cp -a ./src/styles/. ./dist/scss",
"clean": "rm -rf node_modules yarn.lock && yarn install",
"format": "prettier --write './src/**/*.{ts,tsx,mdx}'",
"lint": "eslint './src/**/*.{js,ts,tsx,mdx}' --fix",
"lint-ci": "eslint './src/**/*.{js,ts,tsx,mdx}'",
"cy-open": "cypress open",
"cy-run": "cypress run",
"release": "standard-version -t @f-design/component-library@",
"release-beta": "standard-version --prerelease beta --skip.changelog --skip.tag",
"release-canary": "standard-version --prerelease canary-$PR_DEV-$UUID --skip.changelog --skip.tag",
"storybook": "start-storybook --quiet -p 6006 -s ./.storybook/public/",
"storybook-build": "build-storybook -s ./.storybook/public/ -o ./storybook-dist",
"storybook-smoke-test": "start-storybook --smoke-test",
"test": "jest --config jestconfig.json",
"upgrade": "yarn upgrade-interactive --latest",
"version": "yarn run format && git add -A src"
},
"dependencies": {
"@babel/core": "^7.7.5",
"classnames": "^2.2.6",
"core-js": "^3.5.0",
"husky": "^3.1.0",
"lodash": "^4.17.15",
"regenerator-runtime": "^0.13.3",
"typescript": "^4.1.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"devDependencies": {
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@storybook/addon-a11y": "^6.3.6",
"@storybook/addon-docs": "^6.3.6",
"@storybook/addon-links": "^6.3.6",
"@storybook/addon-storyshots": "^6.3.6",
"@storybook/addons": "^6.3.6",
"@storybook/react": "^6.3.6",
"@testing-library/cypress": "^7.0.3",
"@types/classnames": "^2.2.9",
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.149",
"@types/node": "^14.14.22",
"@types/storybook__addon-storyshots": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"awesome-typescript-loader": "^5.2.1",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.3.2",
"cypress": "^8.1.0",
"cypress-storybook": "^0.5.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.7.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mdx": "^1.7.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"jest": "^24.9.0",
"node-sass": "^5.0.0",
"prettier": "^1.19.1",
"react": "^17.0.1",
"react-docgen-typescript-loader": "^3.6.0",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^16.12.0",
"require-context.macro": "^1.2.2",
"sass": "^1.25.0",
"sass-loader": "^8.0.0",
"source-map-loader": "^0.2.4",
"standard-version": "^8.0.0",
"style-loader": "^1.0.1",
"terser-webpack-plugin": "^2.3.0",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "yarn run lint-ci"
}
}
}