-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
120 lines (120 loc) · 4.09 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
115
116
117
118
119
120
{
"name": "@lifeway/carousel",
"version": "0.2.2",
"description": "A reusable, responsive, and adaptive carousel for react",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"files": [
"lib",
"svg",
"src",
"docs/demo",
"!src/**/*.stories.js",
"!src/**/__integration_tests__",
"!src/**/__tests__",
"!*.tsbuildinfo"
],
"scripts": {
"start": "npm run storybook",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"build": "tsc --project ./tsconfig.build.json",
"build:check": "npm run build -- --noEmit",
"audit": "audit-ci --high -a 1700 1693 1556",
"lint": "eslint .",
"test": "npm-run-all -c -s test:client test:browser",
"test:ci": "npm-run-all -c -s test:client:ci test:browser:ci",
"test:browser": "cypress run --config-file ./test/browser/cypress.json",
"test:browser:ci": "npm run test:browser",
"test:browser:open": "cypress open --config-file ./test/browser/cypress.json",
"test:client": "jest",
"test:client:ci": "jest --ci --coverage --runInBand",
"test:client:coverage": "npm test -- --coverage",
"test:client:watch": "jest --watch",
"pretest:visual": "mkdir -p ./reports/visual",
"test:visual": "eyes-storybook --exit-code --conf ./test/visual/applitools.config.js",
"validate": "npm-run-all -c -p build:check audit lint -s test test:visual",
"version:check": "node ./scripts/version-check.js",
"prepack": "npm run build",
"prepublishOnly": "npm run version:check"
},
"repository": {
"type": "git",
"url": "https://github.com/LifewayIT/carousel.git"
},
"keywords": [
"react",
"carousel"
],
"author": "Corinth",
"license": "ISC",
"bugs": {
"url": "https://github.com/LifewayIT/carousel/issues"
},
"homepage": "https://github.com/LifewayIT/carousel#readme",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@applitools/eyes-storybook": "^3.20.2",
"@babel/cli": "^7.13.14",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.12.1",
"@babel/runtime": "^7.11.2",
"@cypress/react": "^4.16.4",
"@storybook/addon-actions": "^6.2.3",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.2.3",
"@storybook/react": "^6.1.21",
"@testing-library/cypress": "^7.0.5",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@testing-library/react-hooks": "^3.4.2",
"@testing-library/user-event": "^12.1.7",
"@types/jest": "^26.0.22",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"@types/resize-observer-browser": "^0.1.5",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"audit-ci": "^3.1.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.12.0",
"core-js": "^3.6.5",
"css-loader": "^5.2.0",
"cypress": "^5.4.0",
"cypress-jest-adapter": "^0.1.1",
"eslint": "^7.23.0",
"eslint-config-corinth": "github:LifewayIT/eslint-config-corinth",
"eslint-import-resolver-jest": "^3.0.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-jest-dom": "^3.7.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-testing-library": "^3.10.2",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"jest-junit": "^12.0.0",
"jest-watch-typeahead": "^0.6.2",
"npm-run-all": "^4.1.5",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"style-loader": "^2.0.0",
"styled-components": "^5.2.3",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3",
"version-exists": "0.0.4"
}
}