-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "hangman-films",
"version": "0.1.0",
"author": "Michal Weisman @zurda",
"license": "MIT",
"private": true,
"homepage": "https://hangman-films.netlify.app",
"dependencies": {
"@types/styled-components": "^5.1.4",
"cross-env": "^6.0.3",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-icons": "^3.11.0",
"react-scripts": "3.4.3",
"react-test-renderer": "^16.12.0",
"styled-components": "^5.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:ci": "cross-env CI=true react-scripts test",
"eject": "react-scripts eject",
"lint": "tslint --project .",
"format": "prettier --write src/**/*.{js,jsx}",
"format:test": "prettier --check src/**/*.{js,jsx}"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/reach__router": "^1.2.6",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.1.0",
"typescript": "^3.7.4"
},
"resolutions": {
"immer": "^8.0.1",
"node-notifier": "^8.0.1",
"object-path": "^0.11.5"
}
}