-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "lock",
"version": "1.0.0",
"description": "lock system for Electronic Engineering",
"scripts": {
"start": "node build/init.js",
"build": "npm run build:server && npm run build:assets",
"build:server": "babel src -d build",
"build:assets": "webpack --mode=production",
"lock:server": "nodemon",
"lock:assets": "webpack --mode=development -w",
"p": "git push origin master"
},
"engines": {
"node": "18.2.0",
"npm": "8.9.0"
},
"repository": {
"type": "git",
"url": "(https://github.com/JitHoon/lock)"
},
"author": "jithub <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.20.1",
"bcrypt": "^5.0.1",
"connect-mongo": "^4.6.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"moment": "^2.29.4",
"mongoose": "^6.5.1",
"morgan": "^1.10.0",
"multer-s3": "^3.0.1",
"node-fetch": "^2.6.6",
"pug": "^3.0.2"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/node": "^7.17.10",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"mini-css-extract-plugin": "^2.6.1",
"nodemon": "^2.0.16",
"sass": "^1.54.9",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}