-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "soulsearch",
"version": "1.0.0",
"description": "A simple web UI and API based on the Soulseek protocol.",
"author": "Riteable",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "jest"
},
"lint-staged": {
"*.{js,vue}": "npm run lint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/pwa": "^3.0.0-0",
"cross-env": "^5.2.0",
"file-saver": "^2.0.2",
"koa": "^2.6.2",
"koa-router": "^8.0.8",
"koa-sse-stream": "^0.2.0",
"mime": "^2.4.4",
"nanoid": "^3.0.2",
"normalize-path": "^3.0.0",
"nuxt": "^2.0.0",
"nuxt-buefy": "^0.3.2",
"qs": "^6.9.3",
"slsk-client": "^1.1.0",
"slug": "^2.1.1",
"stream-mmmagic": "^2.2.0",
"vue-feather-icons": "^5.0.0",
"vue-sse": "^1.0.2"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"@nuxtjs/stylelint-module": "^3.1.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"husky": "^4.0.0",
"jest": "^24.1.0",
"lint-staged": "^10.0.0",
"node-sass": "^4.13.1",
"nodemon": "^1.18.9",
"sass-loader": "^8.0.2",
"stylelint": "^10.1.0",
"vue-jest": "^4.0.0-0"
}
}