-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "cra-tailwindcss",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "4.0.3"
},
"devDependencies": {
"cypress": "9.7.0",
"cypress-image-snapshot": "4.0.1",
"eslint-plugin-cypress": "2.12.1",
"start-server-and-test": "1.14.0",
"tailwindcss": "1.9.6"
},
"scripts": {
"prestart": "tailwind build ./src/index.tailwind.css -c ./tailwind.config.js -o ./src/index.css",
"start": "react-scripts start",
"prebuild": "tailwind build ./src/index.tailwind.css -c ./tailwind.config.js -o ./src/index.css",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "cypress open",
"test:ci": "start-server-and-test start http://localhost:3000 cy:run",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:updateSnapshots": "cypress run --env updateSnapshots=true"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}