-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.04 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.04 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pawebcontrol",
"version": "2.0.0",
"description": "PulseAudio Web Volume Control",
"main": "src/backend/index.js",
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"build": "webpack",
"start": "ts-node src/backend/index.ts & webpack-dev-server",
"start:dev": "ts-node-dev --no-notify src/backend/index.ts & webpack-dev-server",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test}/**/*.ts": [
"npx prettier --write",
"tslint --fix",
"git add"
],
"*.{json,md,js,html}": [
"npx prettier --write",
"git add"
],
"*.{css,scss}": [
"npx prettier --write",
"stylelint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Siot/PaWebControl.git"
},
"keywords": [
"PulseAudio"
],
"author": "Llorenç Garcia Martinez",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Siot/PaWebControl/issues"
},
"homepage": "https://github.com/Siot/PaWebControl#readme",
"dependencies": {
"express": "^4.17.1",
"jquery": "^3.4.1",
"socket.io": "^2.3.0",
"sortablejs": "^1.10.1",
"ts-node": "^8.4.1"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jest": "^24.0.22",
"@types/node": "^12.12.6",
"@types/socket.io": "^2.1.4",
"ajv": "^6.10.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"rimraf": "^2.7.1",
"style-loader": "^1.0.0",
"stylelint": "^11.1.1",
"stylelint-config-recommended": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
}
}