-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "api",
"version": "1.0.0",
"main": "dist/bundle.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/app.js --mode development",
"serve": "babel-node src/app.js --mode development",
"build": "webpack"
},
"keywords": [],
"author": "GlibWild <1075012871@qq.com>",
"license": "MIT",
"description": "",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.8",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.8",
"babel-loader": "^9.2.1",
"babel-plugin-module-resolver": "^5.0.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"nodemon": "^3.1.9",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}