-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 3.38 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
{
"name": "Tententen",
"version": "0.0.1",
"private": true,
"scripts": {
"clean": "rimraf dist/* html/Web.bundle/*",
"clean-docs": "rimraf docs",
"android": "PLATFORM=android npm run bundle && react-native run-android",
"ios": "PLATFORM=ios npm run bundle && react-native run-ios",
"ios-release": "PLATFORM=ios npm run bundle && react-native run-ios --configuration Release",
"start": "react-native start",
"test": "jest",
"type": "tsc -p ./tsconfig.web.json --noEmit --incremental false",
"build": "parcel build --public-url . --out-dir dist src/index.html",
"bundle": "npm run clean && SPLASH_SCREEN=1 npm run build && cp dist/* html/Web.bundle/",
"web": "PLATFORM=web parcel --out-dir web-cache src/index.html",
"web:full": "SPLASH_SCREEN=1 parcel --out-dir web-cache src/index.html",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"fmt": "deno fmt src *.js *.tsx README.md",
"storybook": "start-storybook -p 6008",
"build-storybook": "build-storybook -o docs/storybook",
"docs": "npm run clean && npm run clean-docs && npm run build && mkdir -p docs/ && cp dist/* docs/ && npm run build-storybook",
"release-android": "npm run clean && PLATFORM=android npm run bundle && git cherry-pick -n ed002f68b2564c46db4dcd2d4b753c94a26efaf4 && cd android && ./gradlew bundleRelease && git reset --hard HEAD && cd .. && cp android/app/build/outputs/bundle/release/app.aab ./",
"test-release-android": "PLATFORM=android npm run bundle && react-native run-android --variant=release"
},
"dependencies": {
"@lepont/async-storage": "^0.4.2",
"@lepont/permissions-android": "^0.2.1",
"@lepont/platform": "^0.1.4",
"@react-native-community/async-storage": "^1.9.0",
"@react-native-community/cameraroll": "^4.0.0",
"lepont": "^0.11.3",
"react": "^16.14.0",
"react-native": "0.62.3",
"react-native-fs": "^2.16.6",
"react-native-navigation-bar-color": "^2.0.1",
"react-native-webview": "^11.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@lepont/share": "^0.2.2",
"@react-native-community/eslint-config": "^0.0.5",
"@storybook/addon-essentials": "^6.0.27",
"@storybook/addon-links": "^6.0.27",
"@storybook/html": "^6.0.27",
"@types/color": "^3.0.1",
"@types/jest": "^24.0.24",
"@types/node": "^13.9.5",
"@types/react-native": "^0.60.25",
"@types/react-native-share": "^3.3.0",
"@types/react-test-renderer": "16.9.1",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"bezier-easing": "^2.1.0",
"capsid": "^1.7.0",
"color": "^3.1.2",
"emotion": "^10.0.27",
"eslint": "^6.5.1",
"gameloopjs": "^1.1.1",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"parcel-bundler": "^1.12.4",
"pod-install": "^0.1.10",
"prettier": "^1.19.1",
"react-dom": "^16.14.0",
"react-is": "^16.13.0",
"react-native-share": "^4.0.1",
"react-test-renderer": "16.9.0",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.7",
"typescript": "^3.7.3",
"uuid": "^7.0.2"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"browserslist": [
"Chrome 79"
]
}