-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.51 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
{
"name": "your_project_name",
"version": "1.0.0",
"description": "xxxx",
"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",
"dev:server": "nodemon",
"dev:assets": "cross-env NODE_OPTIONS=--openssl-legacy-provider webpack --mode=development -w"
},
"dependencies": {
"@ffmpeg/core": "^0.8.5",
"@ffmpeg/ffmpeg": "^0.9.7",
"bcrypt": "^5.1.0",
"colorthief": "^2.4.0",
"connect-mongo": "^4.4.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.1",
"html2canvas": "^1.4.1",
"mongoose": "^5.12.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-fetch": "^2.6.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"postcss": "^8.4.21",
"pug": "^3.0.2",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/node": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"mini-css-extract-plugin": "^2.7.5",
"nodemon": "^2.0.22",
"sass": "^1.60.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1"
}
}