-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.41 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
{
"name": "@ever-dev/browser-sdk-boilerplate",
"version": "0.2.0",
"description": "Browser SDK Boilerplate",
"main": "dist/index.js",
"module": "dist/index.es.js",
"umd": "dist/umd",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "jest --passWithNoTests",
"package:clean": "rm -rf dist",
"package:copy": "cp package.json dist && cp README.md dist",
"package:build": "yarn package:clean && rollup -c && yarn package:copy",
"package:release": "release-it",
"package:publish": "yarn package:build && yarn publish",
"tsc": "tsc --pretty --noEmit",
"prepare": "husky install",
"validate": "npm-run-all --parallel lint tsc",
"commitlint": "commitlint",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "yarn lint --fix",
"format": "npx prettier --config .prettierrc \"**/*.{css,scss,js,ts,md}\" --write",
"format:test": "npx prettier --config .prettierrc \"**/*.{css,scss,js,ts,md}\" -l"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.4.2",
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/jest-dom": "^5.16.5",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"babel-eslint": "^10.1.0",
"commitlint": "^17.4.2",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^45.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.4.1",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"release-it": "^17.4.0",
"rollup": "^2.70.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {},
"peerDependencies": {},
"resolutions": {}
}