-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
114 lines (114 loc) · 3.33 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
{
"name": "uikit-react",
"version": "3.1.3",
"description": "UIkit components for use in React.",
"repository": "https://github.com/vacarsu/uikit-react",
"homepage": "https://vacarsu.github.io/uikit-react",
"main": "./lib/uikit-react.js",
"module": "./lib/uikit-react.js",
"scripts": {
"build": "rollup -c",
"test": "jest --coverage --json --outputFile=coverage/coverage.json",
"test-update": "jest --updateSnapshot",
"test-watch": "jest --watchAll",
"build-storybook": "build-storybook",
"storybook": "start-storybook ./src/stories/assets -p 6006",
"lint": "tslint -c tslint.json \"src/**/*.ts\"",
"lint:fix": "tslint --fix -c tslint.json \"src/**/*.ts\"",
"precommit": "lint-staged"
},
"author": "Alex Lopez",
"license": "ISC",
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"uikit": "^3.6.22"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@reach/router": "1.3.4",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-docs": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-knobs": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addon-options": "^5.3.21",
"@storybook/addons": "^6.2.9",
"@storybook/components": "^6.2.9",
"@storybook/react": "^6.2.9",
"@types/classnames": "^2.2.4",
"@types/he": "^1.1.0",
"@types/jest": "24.9.0",
"@types/marked": "^0.3.0",
"@types/prismjs": "^1.9.0",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.1",
"awesome-typescript-loader": "^5.2.0",
"babel-loader": "^8.2.2",
"codecov": "^3.1.0",
"he": "^1.1.1",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "27.0.0",
"lint-staged": "^7.2.0",
"npm-run-all": "^4.1.3",
"nyc": "^13.1.0",
"prettier": "^1.13.7",
"react": "^17.0.1",
"react-docgen-typescript-webpack-plugin": "^1.1.0",
"react-dom": "^17.0.1",
"react-jsx-parser": "^1.3.4",
"react-router-dom": "^4.3.1",
"react-test-renderer": "^17.0.1",
"rimraf": "^2.6.2",
"rollup": "^0.60.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-css-only": "^0.4.0",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.2",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-typescript2": "^0.14.0",
"sass": "^1.34.1",
"sass-loader": "^10.0.0",
"storybook-addon-jsx": "^7.3.10",
"style-loader": "^1.3.0",
"ts-jest": "^27.0.3",
"ts-loader": "^4.3.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^3.8.0",
"uglify-es": "^3.3.9",
"uikit": "^3.6.22",
"webpack": "^4.46.0"
},
"dependencies": {
"classnames": "^2.2.5"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,tsx}",
"<rootDir>/src/**/?(*.)(spec|test).{js,tsx}"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
],
"moduleNameMapper": {
"\\.(css|less|scss)$": "identity-obj-proxy"
},
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}