This repository has been archived by the owner on Oct 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.21 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
{
"name": "@christfellowshipchurch/web-ui-kit",
"version": "0.0.35",
"description": "Web UI Kit package for Christ Fellowship web projects",
"main": "lib/index.js",
"scripts": {
"start": "yarn build-css && react-scripts start",
"test": "yarn build-css && jest",
"build": "NODE_ENV=production rm -rf ./lib && mkdir -p lib && babel ./src/components -d ./lib --copy-files && yarn minify-css",
"lint": "eslint ./src --ext .js",
"babel-version": "babel --version",
"build-css": "node-sass --include-path scss ./src/components/styles/scss/christ-fellowship-bootstrap.scss ./src/components/styles/css/christ-fellowship-bootstrap.css",
"minify-css": "node-sass --include-path scss ./src/components/styles/scss/christ-fellowship-bootstrap.scss ./lib/styles/css/christ-fellowship-bootstrap.css --output-style compressed"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/christfellowshipchurch/web-ui-kit.git"
},
"author": "Christ Fellowship Church <[email protected]>",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/christfellowshipchurch/web-ui-kit/issues"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@fortawesome/fontawesome-pro": "^5.10.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "^3.0.0",
"react-test-renderer": "^16.8.6",
"sass-loader": "^7.1.0"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"@babel/cli": "^7.4.3",
"@fortawesome/fontawesome-pro-light": "^5.0.13",
"@fortawesome/fontawesome-pro-regular": "^5.0.13",
"@fortawesome/fontawesome-pro-solid": "^5.0.13",
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-solid-svg-icons": "^5.7.2",
"@fortawesome/pro-light-svg-icons": "^5.10.0",
"@fortawesome/pro-regular-svg-icons": "^5.10.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"html-to-react": "^1.3.4",
"lodash": "^4.17.11",
"node-sass": "^4.12.0",
"popper.js": "^1.14.7",
"prop-types": "^15.7.2",
"react-deprecate": "^0.1.0",
"react-image": "^2.0.0",
"react-slick": "^0.24.0",
"slick-carousel": "^1.8.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "babel-jest"
},
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,mjs}",
"<rootDir>/src/**/?(*.)(spec|test|tests).{js,jsx,mjs}"
],
"testEnvironment": "jsdom"
},
"homepage": "https://github.com/christfellowshipchurch/web-ui-kit#readme",
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}