-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
{
"name": "todo",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "run-p watch:tailwind start:react",
"start:react": "BROWSER=none HOST=127.0.0.1 react-scripts --openssl-legacy-provider start",
"build:tailwind": "postcss src/tailwind.css -o src/tailwind.generated.css",
"watch:tailwind": "postcss -w src/tailwind.css -o src/tailwind.generated.css",
"prebuild": "npm run build:tailwind",
"build": "react-scripts build",
"cypress": "cypress open",
"test": "cypress run --browser chrome --headless",
"lint": "eslint './src/*.js' --fix",
"eject": "react-scripts eject"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@fullhuman/postcss-purgecss": "^2.1.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^7.2.1",
"autoprefixer": "^9.7.6",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.2",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-modal": "^3.14.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"redux-zero": "^5.1.7",
"tailwindcss": "^1.9.6"
},
"devDependencies": {
"cypress": "^4.10.0"
},
"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"
]
}
}