-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.22 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.22 KB
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
{
"name": "@salable/react-sdk",
"version": "2.0.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"author": "Salable",
"license": "MIT",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "husky install",
"commit": "cz",
"build": "rollup -c",
"preversion": "npm run build",
"postversion": "./scripts/post-version-handler.sh",
"pre-commit": "lint-staged",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.0.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"eslint": "8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"jest": "^29.0.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rollup": "^3.2.5",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.1",
"ts-node": "^9.0.0",
"typescript": "^4.8.3"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Salable/react-sdk.git"
},
"bugs": {
"url": "https://github.com/Salable/react-sdk/issues"
},
"homepage": "https://github.com/Salable/react-sdk#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}