-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.62 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
{
"name": "the-rss",
"version": "1.2.1",
"license": "MIT",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react": "^10.4.8",
"@testing-library/user-event": "^12.1.1",
"@types/classnames": "^2.2.9",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/react-transition-group": "^4.4.0",
"@types/uuid": "^8.3.0",
"autoprefixer": "^9.8.6",
"classnames": "^2.2.6",
"concurrently": "^5.3.0",
"date-fns": "^2.15.0",
"localforage": "^1.9.0",
"md5": "^2.3.0",
"netlify-cli": "^2.59.1",
"node-fetch": "^2.6.1",
"postcss-cli": "^7.1.1",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"rss-parser": "^3.9.0",
"typescript": "^4.0.2"
},
"scripts": {
"lint": "eslint './src/**/*.{ts,tsx}' --max-warnings=0",
"bootstrap": "cp .env.local.example .env.local",
"style:build": "postcss src/styles/index.css -o src/styles/tailwind.css",
"style:watch": "postcss src/styles/index.css -o src/styles/tailwind.css --watch",
"start": "netlify dev",
"start:react": "concurrently \"npm run style:watch\" \"react-scripts start\"",
"build": "npm run style:build && react-scripts build",
"test": "react-scripts test --watchAll=false --env=jsdom-fourteen",
"test:watch": "react-scripts test --watch --env=jsdom-fourteen",
"test:coverage": "react-scripts test --env=jsdom-fourteen --watchAll=false --coverage --coverageDirectory=coverage/ --collectCoverageFrom=src/**/*.{ts,tsx} --collectCoverageFrom=!src/**/{*.stories.js,*.d.ts,serviceWorker.ts}",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:34567",
"devDependencies": {
"husky": "^4.2.3",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"tailwindcss": "^1.7.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn lint",
"prettier --write"
]
}
}