-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.84 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
{
"name": "firewall-web-app",
"version": "0.1.0",
"description": "The Firewall Pop-Up client on the web.",
"homepage": ".",
"main": "index.js",
"engines": {
"node": "20.x.x"
},
"scripts": {
"predeploy": "yarn run build",
"deploy": "gh-pages -d build",
"build": "react-scripts build",
"start:server": "nodemon index.js --watch index.js server/*",
"start:client": "BROWSER=none react-scripts start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"dev": "concurrently \"yarn run start:server\" \"yarn run start:client\" --kill-others",
"start": "node index.js"
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"customize-cra": "^1.0.0",
"express": "^4.18.2",
"node-fetch": "^2.6.1",
"postmark": "3.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modern-drawer": "^1.4.0",
"react-router-dom": "^6.27.0",
"react-scripts": "^5.0.1",
"react-tooltip": "^5.28.0",
"serpapi": "^2.1.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"gh-pages": "^5.0.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3"
},
"proxy": "http://localhost:8080",
"repository": {
"url": "https://github.com/FIREWALL-cafe/firewall-web-app"
},
"license": "MIT",
"keywords": [
"node",
"express"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}