-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.42 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": "tweries-app",
"version": "1.10.7",
"private": true,
"description": "Tweries, a tweet-storm-helper app that breaks up a long paragraph into multiple tweets.",
"dependencies": {
"@amplitude/react-amplitude": "^1.0.0",
"@auth0/auth0-spa-js": "^1.7.0",
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-brands-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^12.1.2",
"amplitude-js": "^8.17.0",
"autoprefixer": "^10.4.2",
"classnames": "^2.2.6",
"feature-provider": "^0.2.3",
"jest-fetch-mock": "^3.0.3",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"tailwindcss": "^1.9.6",
"voca": "^1.4.0"
},
"scripts": {
"build": "react-scripts build",
"build:styles": "postcss src/tailwind.css -o src/styles.css",
"deploy": "gh-pages -d build",
"eject": "react-scripts eject",
"lint": "eslint src/",
"prebuild": "NODE_ENV=production yarn build:styles",
"predeploy": "yarn build",
"prestart": "yarn build:styles",
"prettier": "prettier 'src/**/*.{css,js,json}'",
"prettier:fix": "yarn prettier --write",
"start": "react-scripts start",
"test": "react-scripts test",
"test:all": "yarn test --watchAll=false --coverage"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"gh-pages": "^3.2.3",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"prettier": "^2.5.1",
"react-scripts": "^5.0.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/containers/Rewrite/**/*.*",
"!src/hooks/useLocalStorage.js",
"!src/constants.js",
"!src/index.js",
"!src/initializeReactGA.js",
"!src/react-auth0-wrapper.js",
"!src/serviceWorker.js"
]
},
"homepage": "https://tweries.com",
"proxy": "http://localhost:9000",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"testing-library/prefer-find-by": "off",
"testing-library/prefer-screen-queries": "off"
}
}
}