-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "cw-lite",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel ./src/index.html",
"testfrontend": "parcel frontend/src/index.html",
"server": "node backend/server.js",
"dev": "concurrently --kill-others \"npm run testfrontend\" \"npm run server\"",
"frontend": "parcel build frontend/src/index.html",
"dev2": "npm run frontend && npm run server"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"concurrently": "^7.2.2",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"flowbite": "^1.5.1",
"flowbite-react": "^0.1.3",
"mongoose": "^6.4.1",
"parcel": "^2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"postcss": "^8.4.14",
"process": "^0.11.10",
"tailwindcss": "^3.1.6"
}
}