This repository has been archived by the owner on Nov 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.71 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
{
"name": "@qoqa/carousel",
"version": "0.7.2",
"main": "index.js",
"module": "es/index.js",
"types": "index.d.ts",
"license": "MIT",
"homepage": "https://qoqa.github.io/carousel/",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"sideEffects": false,
"dependencies": {
"react-swipeable-views": "0.14.0",
"react-swipeable-views-utils": "0.14.0"
},
"devDependencies": {
"@material-ui/core": "4.12.3",
"@material-ui/icons": "4.11.2",
"@next/eslint-plugin-next": "12.0.4",
"@testing-library/jest-dom": "5.15.0",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.0.3",
"@types/node": "16.11.9",
"@types/react": "17.0.36",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"babel-eslint": "10.1.0",
"error": "10.4.0",
"eslint": "7.32.0",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "8.3.0",
"eslint-config-react-app": "7.0.0-next.91",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest-dom": "3.9.2",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.27.1",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "7.0.4",
"jest": "27.3.1",
"lint-staged": "12.1.2",
"next": "12.0.4",
"npm-run-all": "4.1.5",
"pinst": "2.1.6",
"prettier": "2.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"rollup": "2.60.1",
"rollup-plugin-typescript2": "0.31.0",
"rollup-plugin-virtual": "1.0.1",
"typescript": "4.5.2"
},
"scripts": {
"start": "next dev",
"start-production": "next start",
"build": "next build && next export && touch out/.nojekyll",
"lint": "eslint --ext js,ts,tsx src --max-warnings=0",
"build:package": "rollup -c && node copy-package-json.js && cp README.md dist",
"test": "jest test --coverage",
"deploy": "npx gh-pages -d out -t",
"format": "npm run lint --fix",
"release": "npm-run-all build:package && cd dist && npm publish",
"validate": "CI=true npm-run-all lint test build validate:package",
"validate:package": "NODE_ENV=production npm run build:package && node validate-package.js",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --max-warnings=0 --no-ignore"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}