-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "bloggrs.api",
"version": "1.0.0",
"type": "commonjs",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsnode": "node --loader ts-node/esm --no-warnings",
"dev2": "ts-node src/app --ignore src/libs/api-docs/swagger.json",
"dev": "cross-env NODE_ENV=development node src/app.js",
"dev-mac": "node_modules/nodemon/bin/nodemon.js --exec ts-node src/app --ignore src/libs/api-docs/swagger.json",
"build": "npm run build:client && npm run build:server",
"build:client": "webpack --config webpack.config.js",
"build:server": "tsc",
"start": "cross-env NODE_ENV=production node dist/app.js",
"db:init": "node src/cli/manage-plugin-db.js init",
"db:push": "node src/cli/manage-plugin-db.js apply-changes --push",
"db:migrate": "node src/cli/manage-plugin-db.js apply-changes",
"db:gen": "node src/cli/manage-plugin-db.js generate-client",
"db:seed": "node src/cli/manage-plugin-db.js seed",
"db:all": "node src/cli/manage-plugin-db.js all",
"watch:client": "webpack --config webpack.config.js --watch",
"seed": "npx prisma db seed"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^9.0.9",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.8",
"@types/ws": "^8.18.1",
"@vue/compiler-sfc": "^3.2.47",
"cross-env": "^7.0.3",
"prisma": "^5.21.1",
"ts-node": "^10.9.2",
"typescript": "^4.5.4"
},
"dependencies": {
"@babel/core": "^7.26.10",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-env": "^7.26.9",
"@css-render/vue3-ssr": "^0.15.14",
"@prisma/client": "^5.21.1",
"@redwoodjs/router": "^8.6.1",
"@types/cors": "^2.8.12",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/parser": "^8.13.0",
"@vitejs/plugin-vue": "^5.2.3",
"@vue/server-renderer": "^3.2.47",
"aws-sdk": "^2.1111.0",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"docs-collector": "^1.0.0",
"dotenv": "^10.0.0",
"ejs": "^3.1.9",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"express-jwt": "^6.0.0",
"handlebars": "^4.7.8",
"html-to-text": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"mysql2": "^2.2.5",
"naive-ui": "^2.41.0",
"node-fetch": "^3.3.2",
"node-html-parser": "^5.3.3",
"nodemon": "^2.0.7",
"prop-types": "^15.8.1",
"randomuuid": "^1.0.1",
"react": "^18.3.1",
"react-router-dom": "^7.5.0",
"sequelize": "^6.3.5",
"slugify": "^1.6.5",
"swagger-ui-express": "^4.1.5",
"unzipper": "^0.12.3",
"vite": "^5.4.15",
"vue": "^3.2.47",
"vue-loader": "^17.3.1",
"vue-router": "^4.5.0",
"vue-template-compiler": "^2.6.14",
"winston": "^3.15.0",
"ws": "^8.18.1",
"yamljs": "^0.3.0",
"yup": "^0.30.0"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}