-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "hallmark-bingo",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-react-jsx": "^7.12.7",
"@tailwindcss/typography": "^0.5.10",
"postcss": "^8.1.10",
"postcss-cli": "^8.3.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-gtm-module": "^2.0.11",
"react-scripts": "^5.0.1",
"styled-components": "^5.2.1",
"styled-jsx": "^5.1.2",
"tailwindcss": "^3.3.5"
},
"scripts": {
"dev:styles": "tailwind build ./src/styles/index.css -o ./src/styles/tailwind.css",
"build:styles": "NODE_ENV=production tailwindcss build ./src/styles/index.css -o ./src/styles/tailwind.css",
"start": "npm run dev:styles && react-app-rewired start",
"build": "npm run build:styles && react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject"
},
"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": {
"customize-cra": "^0.9.1",
"react-app-rewired": "^2.1.5"
}
}