-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
{
"name": "osmosys-ui",
"version": "1.2.7",
"scripts": {
"test": "jest",
"build": "npm run build:esm",
"build:esm": "rd /s /q \"dist\" && tsc",
"build:macos": "rm -rf \"dist\" && tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run prettier",
"prettier": "prettier --write \"src/**/*.{ts,tsx}\""
},
"eslintConfig": {
"ignorePatterns": [
"dist",
"node_modules"
]
},
"files": [
"dist",
"src",
"README.md"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nicofishman/Osmosys-UI.git"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"dependencies": {
"@expo-google-fonts/montserrat": "^0.2.3",
"@expo-google-fonts/nunito": "^0.2.3",
"@expo/vector-icons": "^14.0.2",
"expo": "^51.0.32",
"expo-font": "~12.0.10",
"expo-modules-core": "~1.12.24",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"react": "18.2.0",
"react-art": "^18.2.0",
"react-native": "0.74.5",
"react-native-flip-card": "^3.5.7"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@types/react": "~18.0.14",
"@types/react-native-flip-card": "^3.5.2",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"babel-loader": "^8.3.0",
"eslint": "^8.36.0",
"eslint-config-universe": "^11.2.0",
"prettier": "^2.8.6",
"react-dom": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}