-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.22 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.22 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@amazon-devices/simonsapp",
"version": "0.0.1",
"private": true,
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf node_modules buildinfo.json dist build",
"start": "react-native start",
"test": "jest --colors ",
"test:snapshot": "jest --colors --updateSnapshot",
"lint": "eslint src test --ext .ts,.tsx",
"lint:fix": "eslint src test --ext .ts,.tsx --fix",
"build:release": "react-native build-vega --build-type Release",
"build:debug": "react-native build-vega --build-type Debug",
"build:app": "npm-run-all build:release",
"build": "npm-run-all build:release",
"release": "npm-run-all lint test build:app"
},
"dependencies": {
"@amazon-devices/keplerscript-react-native-reanimated": "~2.0.0",
"@amazon-devices/react-native-kepler": "^2.0.0",
"@amazon-devices/react-native-qrcode-svg": "^2.0.1758683737",
"@amazon-devices/react-native-safe-area-context": "~2.0.0",
"@amazon-devices/react-native-screens": "~2.0.0",
"@amazon-devices/react-navigation__core": "~2.0.0",
"@amazon-devices/react-navigation__drawer": "~2.0.0",
"@amazon-devices/react-navigation__native": "~2.0.0",
"@amazon-devices/react-navigation__routers": "~2.0.0",
"@amazon-devices/react-navigation__stack": "~2.0.0",
"react": "18.2.0",
"react-native": "0.72.0",
"react-native-gesture-handler": "~2.13.0"
},
"devDependencies": {
"@amazon-devices/kepler-cli-platform": "^0",
"@react-native/eslint-config": "0.72.2",
"@react-native/metro-config": "^0.72.6",
"@react-native-community/cli": "11.3.2",
"@testing-library/react-native": "^7.2.0",
"@tsconfig/react-native": "^3.0.2",
"@types/jest": "^28.0.0",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"babel-jest": "^28.0.0",
"eslint": "^8.12.0",
"jest": "^28.0.0",
"metro-react-native-babel-preset": "^0.76.5",
"mustache": "^4.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"react-test-renderer": "18.2.0",
"ts-jest": "^28.0.0",
"typescript": "4.8.4"
},
"kepler": {
"projectType": "application",
"appName": "SimonsApp",
"targets": [
"tv"
]
}
}