-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 931 Bytes
/
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
{
"name": "cra-tailwindcss-in-js",
"version": "1.0.0",
"private": true,
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "4.0.3",
"styled-components": "5.3.5"
},
"devDependencies": {
"cypress": "9.7.0",
"cypress-image-snapshot": "4.0.1",
"eslint-plugin-cypress": "2.12.1",
"start-server-and-test": "1.14.0",
"tailwind.macro": "1.0.0-alpha.10"
},
"scripts": {
"start": "react-scripts start",
"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"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}