This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.51 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
{
"name": "@kyma-project/react-components",
"version": "0.0.43",
"main": "dist/index.js",
"private": false,
"license": "Apache-2.0",
"directories": {
"dist": "src"
},
"scripts": {
"start": "npm run styleguide",
"start:kyma": "npm run build:watch",
"start:kyma:api": "npm run build:watch",
"build": "webpack --config webpack.config.prod.js",
"build:watch": "webpack -w --config webpack.config.dev.js",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"test": "jest src/**; exit 0",
"test:watch": "jest src/** --watch",
"test:watchAll": "jest src/** --watchAll",
"test:coverage:report": "open ./coverage/lcov-report/index.html",
"lint-fix": "prettier --config ../../.prettierrc --write \"./src/**/*.{js,jsx,ts,tsx,html,css,json}\"",
"lint-check": "prettier --config ../../.prettierrc --check \"./src/**/*.{js,jsx,ts,tsx,html,css,json}\""
},
"dependencies": {
"polished": "^4.1.4",
"styled-components-modifiers": "^1.2.5"
},
"devDependencies": {
"@babel/types": "7.0.0-beta.44",
"ajv": "^6.12.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"file-loader": "^6.2.0",
"fiori-fundamentals": "1.7.9",
"fontfaceobserver": "^2.1.0",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.8",
"npm-run-all": "^4.1.5",
"raf": "^3.4.1",
"react-jsonschema-form": "1.8.1",
"react-modal": "^3.14.4",
"react-scrollbar": "^0.5.6",
"react-styleguidist": "^11.2.0",
"react-test-renderer": "^17.0.2",
"style-loader": "^2.0.0",
"styled-components": "^5.3.3",
"styled-components-grid": "^2.2.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"peerDependencies": {
"styled-components": "^3.2.3"
},
"resolutions": {
"uglify-es": "3.3.7"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**",
"!src/**/*.snap",
"!src/components/index.js",
"!src/modifiers/**",
"!src/index.js"
],
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "babel-jest"
},
"moduleDirectories": [
"node_modules",
"./"
],
"setupFiles": [
"raf/polyfill",
"./test_setup/config"
]
}
}