forked from freenowtech/wave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 4.67 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
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
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@freenow/wave",
"version": "1.18.1",
"description": "React components of the Wave design system for your Front-End project",
"main": "lib/cjs/index.js",
"typings": "lib/types/index.d.ts",
"module": "lib/esm/index.js",
"sideEffects": [
"lib/esm/polyfills.js",
"lib/cjs/polyfills.js"
],
"scripts": {
"clean": "rm -rf lib",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"build:cjs": "ttsc --target es5 --module commonjs --outDir lib/cjs",
"build:esm": "ttsc --target es6 --module esnext --outDir lib/esm",
"build:documentation": "docz build",
"generate": "npm run generate:icons",
"generate:icons": "node ./scripts/generate-icons assets/icons -r -o src/icons --exclude-color-prop **/brands/** **/flags/** --exclude-suffix **/flags/**",
"prettier": "pretty-quick --staged",
"start": "docz dev",
"test": "jest",
"test:fixture": "./scripts/run_fixtures.sh",
"test:watch": "jest --watch",
"lint": "npx concurrently \"npm run lint:eslint\" \"npm run lint:stylelint\"",
"lint:stylelint": "stylelint --config .stylelintrc 'src/**/*.ts?(x)'",
"lint:eslint": "eslint --format pretty --ext .js,.jsx,.ts,.tsx src/",
"husky:commitMsg": "commitlint -E HUSKY_GIT_PARAMS",
"husky:precommit": "npm run lint:eslint -- --fix && npm run prettier"
},
"husky": {
"hooks": {
"commit-msg": "npm run husky:commitMsg",
"pre-commit": "npm run husky:precommit"
}
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/freenowtech/wave.git"
},
"files": [
"lib/"
],
"license": "Apache-2.0",
"peerDependencies": {
"react": ">16.8",
"react-dom": ">16.8",
"styled-components": ">4.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@svgr/core": "^5.3.0",
"@svgr/plugin-prettier": "^5.3.0",
"@svgr/plugin-svgo": "^5.3.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^25.1.4",
"@types/jest-axe": "^3.2.1",
"@types/react": "^16.9.26",
"@types/react-dom": "^16.9.5",
"@types/react-transition-group": "^4.2.4",
"@types/styled-components": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"docz": "^2.3.1",
"eslint": "^7.31.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.7",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^34.0.1",
"gatsby-plugin-styled-components": "^3.3.2",
"gatsby-theme-docz": "^2.3.1",
"husky": "^4.2.3",
"jest": "^25.2.3",
"jest-axe": "^3.4.0",
"jest-date-mock": "^1.0.8",
"jest-styled-components": "^7.0.2",
"minimatch": "^3.0.4",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-lottie": "^1.2.3",
"semantic-release": "^17.4.2",
"styled-components": "^5.1.1",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"theme-ui": "^0.3.1",
"ts-jest": "^25.2.1",
"ts-morph": "^7.0.0",
"ttypescript": "^1.5.12",
"typescript": "^3.8.3",
"typescript-plugin-styled-components": "^1.5.0",
"yargs": "^15.3.1"
},
"dependencies": {
"@datepicker-react/hooks": "^2.3.1",
"@styled-system/theme-get": "^5.1.2",
"@types/react-select": "^3.0.13",
"@types/styled-system": "^5.1.9",
"date-fns": "^2.11.1",
"nanoid": "^3.1.23",
"react-tether": "^2.0.7",
"react-transition-group": "^4.3.0",
"react-windowed-select": "^2.0.2",
"styled-system": "^5.1.5",
"warning": "^4.0.3"
}
}