-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.82 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
{
"name": "react-append-styles",
"version": "1.3.1",
"description": "React append js styles to head",
"author": "Ann Bystrova <ann.bystrova96@mail.ru>",
"repository": {
"type": "git",
"url": "git+https://github.com/Ann2827/react-append-styles.git"
},
"keywords": [
"react",
"css-in-js",
"append",
"styles"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Ann2827/react-append-styles/issues"
},
"homepage": "https://github.com/Ann2827/react-append-styles#readme",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"types": "dist/types/index.d.ts",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"start": "rollup -c -w",
"build": "rimraf dist && rollup -c",
"test": "run-s test:lint test:unit",
"test:lint": "eslint './src/*.ts'",
"test:unit": "jest --collectCoverage",
"release": "semantic-release",
"lint": "eslint './src/**/*.ts' --fix",
"predeploy": "cd website && yarn build"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@semantic-release/git": "10.0.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^25.1.4",
"@types/jsdom": "^21.1.2",
"@types/node": "^12.12.38",
"@types/prop-types": "^15.7.5",
"@types/react": "^16.9.27",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"eslint": "8.12.0",
"eslint-config-airbnb-typescript": "16.1.4",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-react": "^9.2.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "26.1.4",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-unicorn": "41.0.1",
"gh-pages": "^2.2.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.6.4",
"jsdom": "^22.1.0",
"prettier": "^3.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rollup": "^2.79.1",
"rollup-plugin-bundle-analyzer": "^1.6.6",
"semantic-release": "^19.0.5",
"typescript": "^4.9.5",
"yarn-run-all": "^3.1.1"
},
"files": [
"dist"
],
"dependencies": {
"library-react-hooks": "^0.21.0"
}
}