-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "link-shortener",
"version": "1.0.0",
"description": "",
"main": "api.js",
"scripts": {
"client:dev": "vite",
"client:build": "tsc && vite build",
"client:preview": "vite preview",
"test": "jest --runInBand --detectOpenHandles --forceExit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-session": "^1.17.3",
"lodash": "^4.17.21",
"mongoose": "^6.6.1",
"mongoose-findorcreate": "^3.0.0",
"passport": "^0.6.0",
"passport-github2": "^0.1.12",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^7.1.2",
"puppeteer": "^18.0.5",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-router-dom": "^6.4.0"
},
"devDependencies": {
"@jest/types": "^29.0.3",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/lodash": "^4.14.185",
"@types/passport": "^1.0.11",
"@types/passport-github2": "^1.2.5",
"@types/react": "^18.0.17",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.8",
"jest": "^29.0.3",
"jest-dev-server": "^6.1.1",
"nodemon": "^2.0.19",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"typescript": "^4.6.4",
"vite": "^3.1.2"
}
}