-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "mongodb-transporter",
"version": "1.0.0",
"description": "Export, import, and backup collections from a MongoDB database",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev": "npm-run-all --parallel watch:sass start-server",
"start-server": "nodemon --ignore ./exports/ app.js",
"watch:sass": "sass sass/main.scss public/style/main.css -w",
"compile:sass": "sass sass/main.scss public/style/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' public/style/style.comp.css -o public/style/style.prefix.css",
"compress:css": "sass public/style/style.prefix.css public/style/main.css --style compressed",
"build:css": "npm-run-all compile:sass prefix:css compress:css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aljaz90/MongoDB-Transporter.git"
},
"author": "Aljaz Kern",
"license": "ISC",
"bugs": {
"url": "https://github.com/aljaz90/MongoDB-Transporter/issues"
},
"homepage": "https://github.com/aljaz90/MongoDB-Transporter#readme",
"dependencies": {
"autoprefixer": "^10.4.8",
"body-parser": "^1.20.0",
"ejs": "^3.1.8",
"express": "^4.18.1",
"formidable": "^3.5.1",
"mongodb": "^6.8.0",
"open": "^8.4.2",
"postcss-cli": "^11.0.0",
"readline-sync": "^1.4.10",
"sass": "^1.54.4"
},
"packageManager": "pnpm@9.8.0"
}