-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.92 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.92 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
76
{
"name": "react-smartphone",
"author": "Alberto Delgado",
"email": "adc.batros@gmail.com",
"version": "0.1.60",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/Turutupa/react-smartphone"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://turutupa.github.io/react-smartphone",
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.2",
"styled-components": "^5.2.1",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"tsc-build": "node scripts/updateTsconfig.js && tsc --declaration",
"start": "react-scripts start",
"build": "npm run tsc-build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"git": "npm run build && git add . && git commit -m",
"postgit": "git push --all",
"deploy": "npm version patch && npm publish --access-public",
"gitpages": "git subtree push --prefix build origin gh-pages",
"predeploy": "npm run build",
"gh-pages": "gh-pages -d build -b 'gh-pages'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"container",
"smartphone",
"phone",
"react",
"react container",
"react frame",
"frame",
"mobile"
],
"devDependencies": {
"gh-pages": "^3.1.0"
}
}