forked from aagavin/movie-star-ui-dep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.39 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
{
"name": "movie-star-ui",
"version": "0.1.0",
"private": true,
"dependencies": {
"@capacitor/android": "^2.4.7",
"@capacitor/core": "2.4.7",
"@ionic/react": "^5.0.7",
"@ionic/react-router": "^5.0.7",
"firebase": "^7.24.0",
"ionicons": "^5.5.1",
"node-sass": "^6.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.4.3",
"react-visibility-sensor": "^5.1.1",
"react-with-firebase-auth": "^1.3.2",
"typescript": "3.9.7",
"use-react-router": "^1.0.7"
},
"devDependencies": {
"@capacitor/cli": "3.0.0",
"@ionic/react-test-utils": "0.1.1",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^10.1.0",
"@types/fetch-mock": "^7.3.3",
"@types/jest": "^26.0.23",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/node": "15.6.1",
"@types/puppeteer": "^5.4.3",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@types/react-helmet": "^6.1.1",
"@types/react-router": "^5.1.14",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"fetch-mock": "^9.11.0",
"tslint": "^6.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build-android": "npm run build; npx cap copy; cd ./android; gradle app:assemble",
"deploy": "ionic build; firebase deploy",
"test": "npm run test:unit",
"test:unit": "react-scripts test",
"test-local": "npm run test -- --coverage --watchAll=true",
"test:integration": "jest -c ./src/__tests__/integration/jest.config.js",
"eject": "react-scripts eject"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"react-app",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-explicit-any": 0
},
"settings": {
"react": {
"version": "detect"
}
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"description": "An Ionic project"
}