-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 3.25 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
{
"name": "eosc-portal-commons-components",
"version": "1.0.0",
"description": "Library containing the custom UI components of the EOSC services. Uses the JS scripts, and the SCSS styles for consistent visualization and events triggering.",
"scripts": {
"start": "gulp serve",
"check:dependencies": "npm i depcheck -g && npx depcheck",
"test": "NODE_ENV=test jest --config=jest.config.js",
"test:coverage": "NODE_ENV=test jest --coverage --config=jest.config.js",
"lint": "npx eslint src/**/*.js[x] core/**/*.js[x] ",
"lint:fix": "npx eslint src/**/*.js[x] core/**/*.js[x] --fix",
"build:docs": "npx styleguidist build --config styleguide.config.js"
},
"lint-staged": {
"src/**/*.js[x]": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"lib/**/*.js[x]": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"*.(json|css|md)": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyfronet-fid/eosc-portal-commons-components.git"
},
"sideEffects": false,
"keywords": [
"EOSC",
"common",
"components"
],
"author": "danielkryska",
"license": "ISC",
"bugs": {
"url": "https://github.com/cyfronet-fid/eosc-portal-commons-components/issues"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged && npm test"
}
},
"homepage": "https://github.com/cyfronet-fid/eosc-portal-commons-components#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/preset-env": "^7.15.6",
"@types/enzyme": "^3.10.9",
"@types/js-cookie": "^3.0.0",
"babel-jest": "^27.2.5",
"babel-loader": "^8.2.2",
"bootstrap": "^4.3.1",
"browser-sync": "^2.27.11",
"compression": "^1.7.4",
"css-loader": "^5.2.7",
"del": "^6.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^3.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-preact": "^1.1.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"execa": "^5.1.1",
"fancy-log": "^1.3.3",
"file-loader": "^6.2.0",
"gulp": "^4.0.2",
"gulp-if": "^3.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-webpack": "^1.5.0",
"husky": "^4.3.8",
"jest": "^27.0.4",
"jest-preset-preact": "^4.0.5",
"node-notifier": "^10.0.0",
"preact-render-to-string": "^5.1.19",
"prettier": "^2.4.1",
"react-styleguidist": "^11.1.7",
"sass": "^1.43.2",
"sass-loader": "^10.2.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^4.2.3",
"vinyl-named": "^1.1.0",
"webpack": "^4.46.0",
"window-resizeto": "0.0.2",
"yargs-parser": "^20.2.9"
},
"dependencies": {
"@babel/eslint-parser": "^7.15.7",
"js-cookie": "^3.0.1",
"preact": "^10.5.14",
"prop-types": "^15.7.2",
"react-bootstrap": "^2.7.1",
"react-required-if": "^1.0.3",
"react-responsive": "^9.0.0-beta.3"
}
}