-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "url-shortener",
"version": "1.3.0",
"description": "URL shortening application",
"author": {
"name": "Jakub Vaněk",
"email": "info@jakub-vanek.eu"
},
"scripts": {
"lint:js": "eslint app/**/*.{js,vue}",
"lint:css": "stylelint app/**/*.{css,vue}",
"lint": "npm run lint:js && npm run lint:css",
"dev": "docker-compose up --build",
"serve": "nodemon ./app/backend/server.js",
"build": "nuxt build -c ./app/nuxt.config.js",
"start": "node ./app/backend/server.js"
},
"dependencies": {
"@nuxtjs/axios": "^5.12.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"mongoose": "^5.10.0",
"nanoid": "^3.1.12",
"nuxt": "^2.14.3"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"babel-eslint": "^10.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.7.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"nodemon": "^2.0.4",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-processor-html": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/vanekj/url-shortener"
},
"bugs": {
"email": "info@jakub-vanek.eu",
"url": "https://github.com/vanekj/url-shortener/issues"
}
}