-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.97 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.97 KB
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
{
"name": "group_maker",
"version": "1.0.0",
"description": "여러 번의 팀프로젝트가 필요한 상황에서 **이전과 최대한 겹치지 않게** 새로운 조를 만들어주는 프로그램입니다",
"private": true,
"scripts": {
"start": "node server.js",
"build": "vite build",
"dev": "run-p watch:*",
"watch:client": "vite dev --open",
"watch:server": "NODE_ENV=development nodemon server",
"preview": "vite preview --port 8080 --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Group-Maker/Group_Maker.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Group-Maker/Group_Maker/issues"
},
"homepage": "https://github.com/Group-Maker/Group_Maker#readme",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"babel-loader": "^8.2.5",
"boxicons": "^2.1.4",
"connect-livereload": "^0.6.1",
"css-loader": "^6.7.1",
"eslint": "^8.25.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"html-webpack-plugin": "^5.5.0",
"livereload": "^0.9.3",
"mini-css-extract-plugin": "^2.6.1",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"style-loader": "^3.3.1",
"vite": "^4.1.4",
"vite-plugin-env-compatible": "^1.1.1"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.19.4",
"@google-cloud/storage": "^6.9.3",
"axios": "^1.1.2",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"core-js": "^3.25.5",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"loadsh": "^0.0.4",
"mongodb": "^4.12.0",
"sanitize-html": "^2.10.0"
},
"engines": {
"node": "^v18.12.1 || ^v16.18.0"
}
}