This repository has been archived by the owner on May 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.17 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
{
"name": "emote-widget",
"description": "The emote-widget",
"version": "0.0.1",
"author": "Chris Castle",
"bugs": "https://github.com/fostive/emote-widget/issues",
"dependencies": {
"animejs": "^3.2.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"helmet": "^3.23.3",
"throttle-debounce": "^2.3.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"eslint": "^7.5.0",
"globby": "^11.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"lwc-services": "^2.2.2",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5"
},
"engines": {
"node": ">=12.18.0",
"npm": ">=6.14.0"
},
"homepage": "https://github.com/fostive/emote-widget",
"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"
]
},
"repository": "fostive/emote-widget",
"scripts": {
"build": "run-s build:css 'build:lwc -- -m production'",
"build:development": "run-s build:css build:lwc",
"build:css": "node scripts/sass.js",
"build:lwc": "rollup --config ./scripts/rollup.config.js",
"lint": "eslint ./src/**/*.js",
"prettier": "prettier --write \"**/*.{scss,css,html,js,json,md,ts,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{scss,css,html,js,json,md,ts,yaml,yml}\"",
"serve": "node scripts/server.js",
"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:*",
"watch:lwc": "rollup --config ./scripts/rollup.config.js --watch",
"watch:css": "nodemon --exec 'npm run build:css' --watch src -e scss"
}
}