-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.73 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
{
"name": "short-urls",
"version": "1.0.0",
"description": "Abbreviate you URLs for easy sharing",
"main": "server.js",
"scripts": {
"start": "node server.js",
"watch": "cross-env NODE_ENV=development nodemon server.js --ignore public/",
"assets": "parcel watch ./public/js/index.js --dist-dir ./public/dist",
"build": "parcel build ./public/js/index.js --dist-dir ./public/dist",
"dev": "concurrently \"npm run watch\" \"npm run assets\" --names \"💻,📦\" --prefix name"
},
"targets": {
"main": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/SrikarKSV/Short-URLs.git"
},
"keywords": [
"url",
"shortner",
"url-shortner",
"node",
"express",
"mongodb"
],
"author": "Srikar KSV",
"license": "ISC",
"bugs": {
"url": "https://github.com/SrikarKSV/Short-URLs/issues"
},
"homepage": "https://github.com/SrikarKSV/Short-URLs#readme",
"dependencies": {
"connect-flash": "^0.1.1",
"connect-mongo": "^4.2.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"flatpickr": "^4.6.9",
"helmet": "^4.4.1",
"mongoose": "^5.11.18",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"validator": "^13.5.2"
},
"devDependencies": {
"@parcel/optimizer-cssnano": "^2.0.0-nightly.616",
"@parcel/packager-css": "^2.0.0-nightly.616",
"@parcel/transformer-css": "^2.0.0-nightly.616",
"@parcel/transformer-postcss": "^2.0.0-nightly.616",
"autoprefixer": "^9.8.6",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"parcel": "^2.0.0-beta.1",
"postcss": "^8.2.7"
},
"browserslist": [
"> 1%",
"not dead",
"last 2 versions"
],
"engines": {
"node": ">=10.0.0"
}
}