-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.72 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@music10/frontend",
"version": "1.3.0",
"author": "Dmitry Dergunov <[email protected]>",
"private": true,
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"help": "react-scripts start --help",
"deploy": "scp -r build/* [email protected]:~/web",
"android": "react-native run-android --deviceId R5CN30KJ6FL",
"android:release": "react-native run-android --variant release",
"build:android:apk": "cd android && gradlew assembleRelease",
"build:android:aab": "cd android && gradlew bundleRelease",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"deploy:doc": "scp -r storybook-static/* [email protected]:~/web/dev/doc/web",
"deploy:apk": "scp -r android/app/build/outputs/apk/release/app-release.apk [email protected]:~/web/dev/musiq.apk",
"i18nextParser": "i18next 'src/**/*.{ts,tsx}'",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"src/**/*.tsx\"",
"test": "react-scripts test",
"test:cov": "react-scripts test --ci --coverage --watchAll=false",
"deploy:coverage": "scp -r coverage/lcov-report/* [email protected]:~/web/dev/coverage/web"
},
"dependencies": {
"@amplitude/react-native": "^2.3.3",
"@milkywire/react-native-confetti": "^1.0.0",
"@react-native-community/blur": "^3.6.0",
"@react-native-community/hooks": "^2.6.0",
"amplitude-js": "^8.4.0",
"axios": "^0.21.1",
"i18next": "^20.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dom-confetti": "^0.2.0",
"react-i18next": "^11.11.4",
"react-native": "^0.64.2",
"react-native-popup-menu": "^0.15.11",
"react-native-share": "^7.0.0",
"react-native-sound": "^0.11.0",
"react-native-svg": "^12.1.1",
"react-native-use-sound": "^1.2.1",
"react-native-web": "^0.17.1",
"react-page-visibility": "^6.4.0",
"react-query": "^3.19.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-router-native": "^5.2.0",
"react-scripts": "4.0.3",
"react-test-renderer": "^17.0.2",
"rxjs": "^7.3.0",
"socket.io-client": "^4.1.3",
"storybook": "^6.3.6",
"use-sound": "^3.0.1"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.2.0",
"@react-native-community/eslint-config": "^3.0.0",
"@storybook/addon-essentials": "^6.3.7",
"@storybook/react": "^6.3.6",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-native": "^7.2.0",
"@testing-library/user-event": "^13.2.1",
"@types/amplitude-js": "^8.0.1",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.12",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-native": "^0.64.12",
"@types/react-native-share": "^3.3.3",
"@types/react-page-visibility": "^6.4.1",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.1.8",
"@types/react-router-native": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"babel-loader": "8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react-hooks": "^4.2.0",
"i18next-parser": "^4.3.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{ts,js,tsx,jsx}",
"!src/**/*.story.{ts,js,tsx,jsx}"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}