2018-10-12 15:37:13 -04:00
|
|
|
---
|
|
|
|
title: Manage npm Dependencies By Understanding Semantic Versioning
|
|
|
|
---
|
2019-07-24 00:59:27 -07:00
|
|
|
# Manage npm Dependencies By Understanding Semantic Versioning
|
2018-10-12 15:37:13 -04:00
|
|
|
|
2019-07-24 00:59:27 -07:00
|
|
|
|
|
|
|
---
|
|
|
|
## Hints
|
|
|
|
|
|
|
|
### Hint 1
|
2019-01-15 13:59:18 -08:00
|
|
|
You should go over to the `package.json` file in your project. SemVer dependencies follow a similar convention like this:
|
2018-10-12 15:37:13 -04:00
|
|
|
|
2019-05-15 10:08:19 -07:00
|
|
|
```json
|
2019-01-15 13:59:18 -08:00
|
|
|
"dependencies": {
|
|
|
|
"dependency1": "^major.minor.patch"
|
|
|
|
},
|
|
|
|
...
|
|
|
|
```
|
2018-10-12 15:37:13 -04:00
|
|
|
|