-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.14 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
{
"name": "@dr.pogodin/react-themes",
"version": "1.7.0",
"description": "UI theme composition with CSS Modules and React",
"main": "./build/common/index.js",
"source": "src/index.ts",
"types": "./build/types-code/index.d.ts",
"exports": {
"module": "./build/module/index.js",
"node": "./build/common/index.js",
"default": "./build/common/index.js"
},
"scripts": {
"build": "rimraf build && npm run build:types-code && npm run build:types-scss && npm run build:common && npm run build:module",
"build:common": "rimraf build/common && babel src -x .ts,.tsx --out-dir build/common --source-maps",
"build:module": "rimraf build/module && babel src -x .ts,.tsx --out-dir build/module --source-maps --config-file ./babel-module.config.js",
"build:types-code": "rimraf build/types-code && tsc --project tsconfig.types.json",
"build:types-scss": "rimraf build/types-scss && typed-scss-modules .",
"jest": "npm run jest:types && npm run jest:logic",
"jest:logic": "jest --config jest/config.json --no-cache",
"jest:types": "tstyche",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"test": "npm run lint && npm run typecheck && npm run jest",
"typecheck": "tsc --project __tests__/tsconfig.json"
},
"repository": "github:birdofpreyru/react-themes",
"keywords": [
"React",
"ReactJS",
"JS",
"JavaSript",
"UI",
"theme",
"CSS",
"Modules",
"Frontend",
"TypeScript"
],
"author": "Dr. Sergey Pogodin <[email protected]> (https://dr.pogodin.studio)",
"license": "MIT",
"bugs": {
"url": "https://github.com/birdofpreyru/react-themes/issues"
},
"homepage": "https://dr.pogodin.studio/docs/react-themes/index.html",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/birdofpreyru"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@babel/eslint-plugin": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@dr.pogodin/babel-plugin-react-css-modules": "^6.13.2",
"@testing-library/dom": "^10.1.0",
"@testing-library/react": "^16.0.0",
"@tsconfig/recommended": "^1.0.6",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.38",
"postcss-scss": "^4.0.9",
"rimraf": "^5.0.7",
"sass": "^1.77.6",
"tstyche": "^2.0.0",
"typed-scss-modules": "^8.0.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.1"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"dependencies": {
"@babel/runtime": "^7.24.7"
}
}