-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·116 lines (116 loc) · 3.78 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "mobrix-ui-native",
"version": "0.1.0",
"description": "Smart React components for every app, easily customizable for every purpose",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist",
"config/rollup.build.config.js",
"src/assets/imgs/*.png"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CianciarusoCataldo/mobrix-ui-native.git"
},
"engines": {
"node": ">=18.20.0"
},
"keywords": [
"ui",
"ui-lib",
"ui-library",
"ui-components",
"react-lib",
"react-library",
"react-libraries",
"react-ui",
"react-ui-components",
"react-ui-components-library",
"react-ui-components-libraries",
"react-ui-library",
"react-ui-libraries",
"react-components",
"react-components-library",
"react-components-libraries",
"react-native-lib",
"react-native-library",
"react-native-libraries",
"react-native-ui",
"react-native-ui-components",
"react-native-ui-components-library",
"react-native-ui-components-libraries",
"react-native-ui-library",
"react-native-ui-libraries",
"react-native-components",
"react-native-components-library",
"react-native-components-libraries"
],
"author": "Cataldo Cianciaruso",
"license": "MIT",
"bugs": {
"url": "https://github.com/CianciarusoCataldo/mobrix-ui-native/issues"
},
"homepage": "https://github.com/CianciarusoCataldo/mobrix-ui-native#readme",
"peerDependencies": {
"react": ">=18",
"react-native": "^0.76.1"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/enzyme": "^3.10.12",
"@types/jest": "^27.0.2",
"@types/mocha": "^9.0.0",
"@types/react": ">=18",
"@types/react-router-dom": "^5.3.3",
"babel-jest": "^29.x.x",
"chokidar": "^3.5.3",
"chokidar-cli": "^3.0.0",
"enzyme": "^3.11.0",
"jest": "29.x.x",
"jest-environment-jsdom": "^29.6.1",
"jest-transform-stub": "^2.0.0",
"npm-run-all": "^4.1.5",
"postcss-import": "^15.1.0",
"react": ">=18",
"react-native": "^0.76.1",
"rollup": "^4.12.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"semver": "^7.6.0",
"ts-jest": "^29.x.x",
"typescript": ">4.X.X"
},
"scripts": {
"build": "rollup -c ./config/rollup.build.config.js",
"build:dev": "rollup -c ./config/rollup.dev.config.js",
"analyze": "rollup -c ./config/rollup.analyze.config.js",
"build-watch": "rollup -c ./config/rollup.dev.config.js -w",
"watch": "chokidar \"src/**/*.css\" \"src/**/*.tsx\" \"src/**/*.ts\" -c \"npm run build:dev\"",
"check-types": "tsc",
"typecheck:watch": "tsc -w",
"start": "npm-run-all --parallel \"watch\" \"start:playground\"",
"init": "sh ./scripts/init.sh",
"init:test-app": "cd test-app && npm ci",
"serve:test-app": "npm-run-all --parallel \"watch\" \"start:test-app\"",
"deploy": "npm run deploy:playground",
"test": "sh ./scripts/start-tests.sh",
"generate-docs": "sh docs-gen/utils/generate-docs.sh",
"init:playground": "cd playground && npm ci",
"analyze:playground": "cd playground && npm run analyze",
"prestart:playground": "npm run build",
"start:playground": "cd playground && npm run start",
"prebuild:playground": "npm run build",
"build:playground": "cd playground && npm run build",
"predeploy:playground": "npm run build:playground",
"deploy:playground": "npx gh-pages -d playground/build"
}
}