forked from microsoft/fluentui-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.6 KB
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
{
"name": "@fluentui-react-native/component-name",
"version": "0.1.0",
"private": true,
"description": "add component-description",
"license": "MIT",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/fluentui-react-native.git",
"directory": "packages/components/ComponentTemplate"
},
"main": "src/index.ts",
"module": "src/index.ts",
"types": "lib/index.d.ts",
"scripts": {
"build": "fluentui-scripts build",
"clean": "fluentui-scripts clean",
"depcheck": "fluentui-scripts depcheck",
"just": "fluentui-scripts",
"lint": "fluentui-scripts lint",
"lint-package": "fluentui-scripts lint-package",
"test": "fluentui-scripts jest",
"update-snapshots": "fluentui-scripts jest -u",
"format": "fluentui-scripts format",
"prettier-fix": "fluentui-scripts prettier --fix true"
},
"dependencies": {},
"devDependencies": {
"@fluentui-react-native/babel-config": "workspace:*",
"@fluentui-react-native/jest-config": "workspace:*",
"@fluentui-react-native/kit-config": "workspace:*",
"@fluentui-react-native/lint-config-rules": "workspace:*",
"@fluentui-react-native/scripts": "workspace:*",
"@fluentui-react-native/test-tools": "workspace:*",
"react": "18.2.0",
"react-native": "^0.71.0"
},
"peerDependencies": {
"react": "18.2.0",
"react-native": "^0.71.0"
},
"rnx-kit": {
"extends": "@fluentui-react-native/kit-config",
"kitType": "library",
"alignDeps": {
"capabilities": [
"core-dev-only",
"tools-core",
"tools-babel"
]
}
}
}