@fattureincloud-mobile/fic-mobile-ds 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +151 -0
package/package.json ADDED
@@ -0,0 +1,151 @@
1
+ {
2
+ "name": "@fattureincloud-mobile/fic-mobile-ds",
3
+ "version": "1.0.0",
4
+ "description": "Official Design System for Fatture in Cloud Mobile",
5
+ "private": false,
6
+ "main": "./lib/commonjs/index.js",
7
+ "module": "./lib/module/index.js",
8
+ "types": "./lib/typescript/index.d.ts",
9
+ "files": [
10
+ "src",
11
+ "lib",
12
+ "android",
13
+ "ios",
14
+ "cpp",
15
+ "*.podspec",
16
+ "react-native.config.js",
17
+ "!ios/build",
18
+ "!android/build",
19
+ "!android/gradle",
20
+ "!android/gradlew",
21
+ "!android/gradlew.bat",
22
+ "!android/local.properties",
23
+ "!**/__tests__",
24
+ "!**/__fixtures__",
25
+ "!**/__mocks__",
26
+ "!**/.*"
27
+ ],
28
+ "scripts": {
29
+ "test": "jest",
30
+ "typecheck": "tsc",
31
+ "lint": "eslint \"**/*.{js,ts,tsx}\"",
32
+ "clean": "del-cli lib",
33
+ "build": "bob build && cp package.json lib/",
34
+ "build:clean": "rm -rf lib && yarn build",
35
+ "release": "dotenv release-it --only-version"
36
+ },
37
+ "keywords": [
38
+ "react-native",
39
+ "ios",
40
+ "android"
41
+ ],
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://biosphere.teamsystem.com/madbit/services/fic/fic-mobile-ds"
45
+ },
46
+ "author": "Fatture in Cloud (https://fattureincloud.it)",
47
+ "license": "MIT",
48
+ "homepage": "https://fattureincloud.it",
49
+ "publishConfig": {
50
+ "registry": "https://registry.npmjs.org/",
51
+ "access": "public"
52
+ },
53
+ "devDependencies": {
54
+ "@babel/core": "^7.20.0",
55
+ "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
56
+ "@babel/preset-env": "^7.20.0",
57
+ "@commitlint/config-conventional": "^17.0.0",
58
+ "@react-native-community/eslint-config": "^3.2.0",
59
+ "@release-it/conventional-changelog": "^5.0.0",
60
+ "@types/jest": "^29.2.0",
61
+ "@types/lodash": "^4.17.20",
62
+ "@types/react": "^18.1.0",
63
+ "@types/react-native": "^0.70.15",
64
+ "@types/react-native-calendars": "^1.1264.3",
65
+ "@types/react-test-renderer": "^18.0.0",
66
+ "@types/styled-components": "^5.1.0",
67
+ "@types/styled-components-react-native": "^5.2.5",
68
+ "auto-changelog": "^2.5.0",
69
+ "babel-jest": "^29.2.1",
70
+ "commitlint": "^17.0.0",
71
+ "del-cli": "^5.0.0",
72
+ "dotenv-cli": "^10.0.0",
73
+ "eslint": "^8.19.0",
74
+ "eslint-config-prettier": "^8.5.0",
75
+ "eslint-plugin-prettier": "^4.0.0",
76
+ "jest": "^29.2.1",
77
+ "lodash": "^4.17.21",
78
+ "metro-react-native-babel-preset": "0.73.9",
79
+ "prettier": "^2.4.1",
80
+ "react-native-builder-bob": "^0.20.0",
81
+ "react-native-gesture-handler": "2.9.0",
82
+ "react-test-renderer": "18.1.0",
83
+ "release-it": "^15.0.0",
84
+ "typescript": "^4.8.4"
85
+ },
86
+ "dependencies": {
87
+ "moment": "^2.29.1",
88
+ "react-dom": "^18.1.0",
89
+ "react-native-calendars": "^1.1312.0",
90
+ "react-native-typography": "^1.4.1",
91
+ "react-native-vector-icons": "^10.2.0",
92
+ "styled-components": "^5.1.1"
93
+ },
94
+ "peerDependencies": {
95
+ "react": "18.1.0",
96
+ "react-native": "0.70.15",
97
+ "react-native-gesture-handler": "*",
98
+ "react-native-reanimated": "*",
99
+ "react-native-typography": "^1.4.1"
100
+ },
101
+ "packageManager": "yarn@1.22.22",
102
+ "jest": {
103
+ "preset": "react-native",
104
+ "modulePathIgnorePatterns": [
105
+ "<rootDir>/example/node_modules",
106
+ "<rootDir>/lib/"
107
+ ]
108
+ },
109
+ "commitlint": {
110
+ "extends": [
111
+ "@commitlint/config-conventional"
112
+ ]
113
+ },
114
+ "prettier": {
115
+ "quoteProps": "consistent",
116
+ "singleQuote": true,
117
+ "tabWidth": 2,
118
+ "trailingComma": "es5",
119
+ "useTabs": false
120
+ },
121
+ "react-native-builder-bob": {
122
+ "source": "src",
123
+ "output": "lib",
124
+ "targets": [
125
+ "commonjs",
126
+ "module",
127
+ [
128
+ "typescript",
129
+ {
130
+ "project": "tsconfig.build.json"
131
+ }
132
+ ]
133
+ ],
134
+ "files": [
135
+ "package.json"
136
+ ]
137
+ },
138
+ "create-react-native-library": {
139
+ "typescript": true,
140
+ "languages": "js",
141
+ "type": "library",
142
+ "version": "0.51.1"
143
+ },
144
+ "resolutions": {
145
+ "react": "18.1.0",
146
+ "react-dom": "18.1.0",
147
+ "react-native": "0.70.15",
148
+ "@types/react": "^18.1.0",
149
+ "@types/react-native": "^0.70.15"
150
+ }
151
+ }