-
-
Notifications
You must be signed in to change notification settings - Fork 213
/
package.json
86 lines (86 loc) · 2.7 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
{
"name": "rn-tourguide",
"version": "3.3.2",
"description": "Make an interactive step by step tour guide for your react-native app (a rewrite of react-native-copilot)",
"main": "node_modules/expo/AppEntry.js",
"types": "lib/index.d.ts",
"private": false,
"scripts": {
"start": "yarn config:dev && expo start -c",
"start:web": "yarn config:dev && expo start -c -w",
"test": "TZ=Europe/Paris jest --no-watchman",
"tsc": "node_modules/.bin/tsc --noEmit",
"tsc:watch": "node_modules/.bin/tsc --noEmit --watch",
"build": "rm -rf lib/ && node_modules/.bin/tsc",
"config:dev": "json -I -f package.json -e 'this.main=\"node_modules/expo/AppEntry.js\"'",
"config:npm": "json -I -f package.json -e 'this.main=\"lib/index.js\"'",
"lint": "tslint --project .",
"verify": "yarn test && yarn lint && yarn tsc && yarn build",
"prepublishOnly": "yarn verify && yarn config:npm",
"postpublish": "yarn config:dev",
"cleaning": "rm -rf node_modules && rm -f yarn.lock && yarn cache clean && yarn install && watchman watch-del-all && rm -fr $TMPDIR/react-*",
"deploy": "gh-pages -d web-build",
"predeploy": "yarn verify && expo build:web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xcarpentier/rn-tourguide.git"
},
"keywords": [
"react-native",
"react-native-joyride",
"react",
"copilot",
"intro.js",
"intro"
],
"author": "Xavier Carpentier <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xcarpentier/rn-tourguide/issues"
},
"homepage": "https://xcarpentier.github.io/rn-tourguide/",
"devDependencies": {
"@types/hoist-non-react-statics": "3.3.1",
"@types/jest": "25.2.3",
"@types/lodash.clamp": "4.0.6",
"@types/react": "~17.0.21",
"@types/react-dom": "~17.0.9",
"@types/react-native": "~0.64.12",
"@types/react-test-renderer": "16.9.2",
"babel-preset-expo": "8.5.1",
"expo": "^43.0.0",
"gh-pages": "2.2.0",
"jest": "^26.0.1",
"jest-expo": "^43.0.1",
"jest-react-native": "^18.0.0",
"json": "^10.0.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-native": "0.64.2",
"react-native-svg": "12.1.1",
"react-native-web": "0.17.1",
"react-test-renderer": ">=16.8.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "~4.3.5"
},
"jest": {
"preset": "jest-expo",
"globals": {
"__TEST__": true
}
},
"dependencies": {
"flubber": "~0.4.2",
"hoist-non-react-statics": "~3.0.1",
"lodash.clamp": "~4.0.3",
"memoize-one": "5.1.1",
"mitt": "~1.1.3"
},
"resolutions": {
"logkitty": "^0.7.1",
"mem": "^4.0.0",
"set-value": "^4.0.1"
}
}