-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.58 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
{
"name": "react-express-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start-react": "react-scripts start",
"eject": "react-scripts eject",
"build": "npm run postcss-build & react-scripts build",
"postcss-build": "postcss src/index.css -o src/dist/index.css",
"watch": "npm-watch postcss & npm-watch build"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.3",
"sqlite3": "^5.0.2",
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.5",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.26.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"web-vitals": "^2.1.4"
},
"watch": {
"postcss": {
"patterns": [
"src"
],
"extensions": "js,jsx,css",
"tasks": "postcss"
},
"build": {
"patterns": [
"src"
],
"extensions": "js,jsx"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"npm-watch": "^0.11.0",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"tailwindcss": "^3.0.23"
}
}