-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.18 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "tv-dashboard",
"version": "0.0.0",
"bugs": "https://github.com//tv-dashboard/issues",
"dependencies": {
"@salesforce-ux/design-system": "^2.10.2",
"axios": "^0.19.0",
"chart.js": "^2.9.3",
"countup.js": "^2.0.4",
"dotenv": "^8.2.0",
"gaugeJS": "^1.3.7",
"jsforce": "^1.9.3",
"lwc-services": "^1.3.12",
"node-tweet-stream": "^2.0.3",
"socket.io": "^2.3.0",
"timeago.js": "^4.0.1"
},
"devDependencies": {
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">=10.0.0"
},
"homepage": "https://github.com//tv-dashboard",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"lwc"
],
"license": "MIT",
"lint-staged": {
"**/*.{css,html,js,json,md,ts,yaml,yml}": [
"prettier --write"
],
"./src/**/*.js": [
"eslint"
],
"*": [
"git add"
]
},
"nodemonConfig": {
"watch": [
"src/server/**/*.js",
"scripts/express-dev.js"
],
"ext": "js",
"ignore": [
"src/**/*.spec.js",
"src/**/*.test.js"
],
"exec": "node ./scripts/express-dev.js"
},
"repository": "/tv-dashboard",
"scripts": {
"build": "lwc-services build -m production",
"build:development": "lwc-services build",
"lint": "eslint ./src/**/*.js",
"prettier": "prettier --write '**/*.{css,html,js,json,md,ts,yaml,yml}'",
"prettier:verify": "prettier --list-different '**/*.{css,html,js,json,md,ts,yaml,yml}'",
"serve": "lwc-services serve",
"test:unit": "lwc-services test:unit",
"test:unit:coverage": "lwc-services test:unit --coverage",
"test:unit:debug": "lwc-services test:unit --debug",
"test:unit:watch": "lwc-services test:unit --watch",
"watch": "run-p watch:client watch:server",
"watch:client": "lwc-services watch",
"watch:server": "nodemon",
"dashboard": "run-s build serve"
}
}