This repository was archived by the owner on Jan 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.88 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.88 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
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
121
122
{
"name": "@storyofams/react-helpers",
"description": "Collection of helpers and hooks to create a resilient front-end application with React.",
"version": "0.0.0-development",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"/dist"
],
"scripts": {
"commit": "./node_modules/cz-customizable/standalone.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint --ext .ts --ext .tsx ./src",
"prettier": "prettier \"**/*.+(js|jsx|json|yml|yaml|css|ts|tsx|md|mdx)\"",
"bundle": "rollup -c",
"bundle:watch": "rollup -c -w",
"build": "npm run build-types && npm run bundle",
"build-types": "tsc --project tsconfig.build.json",
"build-types:watch": "tsc --project tsconfig.build.json --watch",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"react": "17.0.1",
"react-dom": "17.0.1"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@rollup/plugin-babel": "5.2.2",
"@rollup/plugin-commonjs": "17.0.0",
"@rollup/plugin-node-resolve": "11.1.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@shopify/jest-dom-mocks": "2.10.0",
"@storyofams/eslint-config-ams": "1.0.1",
"@testing-library/cypress": "7.0.3",
"@testing-library/dom": "7.29.4",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.3",
"@testing-library/react-hooks": "5.0.0",
"@testing-library/user-event": "12.6.0",
"@types/express": "4.17.11",
"@types/jest": "26.0.20",
"@types/node": "14.14.21",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/testing-library__jest-dom": "5.9.5",
"@typescript-eslint/eslint-plugin": "4.13.0",
"@typescript-eslint/parser": "4.13.0",
"@zerollup/ts-transform-paths": "1.7.18",
"awesome-typescript-loader": "5.2.1",
"babel-eslint": "10.1.0",
"cz-customizable": "git+https://github.com/storyofams/cz-customizable.git#6.3.1",
"eslint": "7.18.0",
"eslint-config-prettier": "7.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.3",
"lodash.get": "4.4.2",
"node-fetch": "2.6.1",
"prettier": "2.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-test-renderer": "17.0.1",
"rollup": "2.36.2",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-clear": "2.0.7",
"rollup-plugin-filesize": "9.1.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.29.0",
"semantic-release": "17.3.7",
"ts-jest": "26.4.4",
"ts-loader": "8.0.14",
"tslib": "2.1.0",
"ttypescript": "1.5.12",
"typescript": "4.1.3"
},
"eslintConfig": {
"extends": [
"@storyofams/eslint-config-ams/web"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.+(js|jsx|ts|tsx)": "yarn lint --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/storyofams/helpers.git"
}
}