-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
89 lines (89 loc) · 2.5 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
{
"name": "@kyma-project/react-components",
"version": "0.0.43",
"main": "dist/index.js",
"private": false,
"license": "Apache-2.0",
"directories": {
"dist": "src"
},
"scripts": {
"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",
"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": {
"@babel/runtime-corejs2": "^7.12.5",
"lodash": "^4.17.21",
"polished": "^1.8.1",
"styled-components-modifiers": "^1.0.1"
},
"devDependencies": {
"@babel/types": "7.0.0-beta.44",
"ajv": "^6.12.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^22.4.1",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"exec-sh": "^0.3.3",
"file-loader": "^1.1.11",
"fiori-fundamentals": "1.5.3",
"fontfaceobserver": "^2.0.13",
"handlebars": "^4.7.3",
"jest": "^24.0.0",
"jest-styled-components": "^4.11.0-1",
"npm-run-all": "^4.1.1",
"raf": "^3.4.0",
"react-jsonschema-form": "1.7.0",
"react-modal": "^3.5.1",
"react-scrollbar": "^0.5.4",
"react-test-renderer": "^16.0.0",
"style-loader": "^0.20.2",
"styled-components": "^3.2.3",
"styled-components-grid": "^2.2.0",
"webpack": "^4.28.1",
"webpack-cli": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"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"
]
}
}