-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
120 lines (120 loc) · 2.91 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
117
118
119
120
{
"name": "katachidraw",
"description": "SVG based drawing tool and react-native component",
"version": "0.5.0",
"author": "Daishi Kato",
"repository": {
"type": "git",
"url": "https://github.com/dai-shi/katachidraw.git"
},
"main": "./src/ExpoEntry.ts",
"source": "./src/library.ts",
"module": "./dist/library.js",
"types": "./dist/library.d.ts",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"module": "./dist/library.js",
"types": "./dist/library.d.ts"
}
},
"files": [
"src",
"dist"
],
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "eslint --ext .js,.ts,.tsx src && tsc && react-scripts test --transformIgnorePatterns \"node_modules/(?!points-on-curve)/\"",
"compile": "tsc --noEmit false --declaration --outDir dist",
"expo-start": "expo start"
},
"keywords": [
"react",
"native",
"svg",
"web",
"draw"
],
"license": "MIT",
"dependencies": {
"jotai": "2.3.1",
"jotai-xstate": "0.3.0",
"perfect-freehand": "1.0.16",
"react-native-svg": "12.1.1",
"react-native-web": "0.17.5",
"svg-path-bbox": "1.0.1",
"svgpath": "2.3.1",
"xstate": "4.26.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-native": "^0.66.9",
"@types/svg-path-bbox": "^1.0.0",
"@unimodules/core": "^7.1.2",
"@unimodules/react-native-adapter": "^6.3.9",
"@xstate/inspect": "^0.5.2",
"browser-fs-access": "^0.23.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"expo": "^44.0.0",
"expo-file-system": "^13.1.0",
"expo-image-picker": "^12.0.1",
"expo-sharing": "^10.1.0",
"expo-status-bar": "^1.2.0",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-native": "0.64.3",
"react-scripts": "^5.0.0",
"typescript": "^4.5.4"
},
"peerDependencies": {
"expo-file-system": "*",
"expo-image-picker": "*",
"expo-sharing": "*",
"expo-status-bar": "*",
"react": "*",
"react-dom": "*"
},
"peerDependenciesMeta": {
"expo-file-system": {
"optional": true
},
"expo-image-picker": {
"optional": true
},
"expo-sharing": {
"optional": true
},
"expo-status-bar": {
"optional": true
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:prettier/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}