-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 893 Bytes
/
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
{
"name": "url-shortener",
"version": "1.0.0",
"description": "a wholistic app providing url-shortening facility",
"main": "server",
"scripts": {
"start": "node server",
"serve": "nodemon server",
"dev_serve": "npx cross-env NODE_ENV=development nodemon server",
"client": "npm start --prefix url-shortener-web",
"dev": "concurrently \"npx cross-env NODE_ENV=development nodemon server\" \"npm run client\"",
"test": "snyk test"
},
"keywords": [
"node",
"url-shortener",
"react"
],
"author": "ashish karki",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"config": "^3.3.6",
"express": "^4.17.1",
"helmet": "^4.4.1",
"mongoose": "^5.12.2",
"nanoid": "^3.1.22"
},
"devDependencies": {
"concurrently": "^6.0.0",
"nodemon": "^2.0.7",
"snyk": "^1.509.0"
}
}