This repository was archived by the owner on Jun 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.42 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.42 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
66
67
68
69
70
71
72
73
74
75
{
"name": "@typeskill/debugger",
"version": "0.11.6",
"description": "A debug utility for typeskill.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build:clean; npm run build:types && npm run build:js",
"build:types": "tsc --project tsconfig.json",
"build:js": "babel --config-file ./babel.config.js src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"build:clean": "rimraf lib",
"prepare": "npm run build",
"test": "npm run validate:typescript && npm run validate:lint",
"validate:typescript": "tsc --project ./ --noEmit",
"validate:lint": "eslint --ext .ts --ext .tsx 'src/'"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/typeskill/debugger.git"
},
"keywords": [
"typeskill",
"debugger"
],
"author": "Jules Samuel Randolph",
"license": "MIT",
"bugs": {
"url": "https://github.com/typeskill/debugger/issues"
},
"homepage": "https://github.com/typeskill/debugger#readme",
"devDependencies": {
"@babel/cli": "^7.6.3",
"@babel/core": "^7.6.3",
"@types/react": "^16.9.5",
"@types/react-native": "^0.60.19",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"@typeskill/eslint-config": "^1.1.1",
"@typeskill/typer": "~0.10.0-beta.19",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"metro-react-native-babel-preset": "^0.56.0",
"prettier": "^1.18.2",
"react": "16.8.6",
"react-native": "0.60.5",
"react-native-gesture-handler": "^1.4.1",
"react-native-reanimated": "^1.3.0",
"react-native-tab-view": "^2.13.0",
"rimraf": "^3.0.0",
"typescript": "^3.6.4"
},
"dependencies": {
"@react-navigation/core": "^5.1.4",
"@react-navigation/material-top-tabs": "^5.0.5",
"@react-navigation/native": "^5.0.5",
"react-native-screens": "^1.0.0-alpha.23",
"react-native-smart-tip": "^2.0.1",
"react-native-syntax-highlighter": "^2.1.0",
"react-native-vector-icons": "^6.6.0",
"react-syntax-highlighter": "^6.1.2"
},
"peerDependencies": {
"@typeskill/typer": ">=0.12.0-alpha.3",
"react": ">=16.8.0",
"react-native": ">=0.59",
"react-native-reanimated": "^1.0.0",
"react-native-gesture-handler": "^1.0.0",
"react-native-tab-view": "^2.10.0"
},
"files": [
"lib/**/*"
]
}