forked from trailheadapps/lwc-recipes-oss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.78 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
{
"name": "lwc-recipes-oss",
"version": "0.2.0",
"author": "Salesforce Developer Evangelism",
"bugs": "https://github.com/trailheadapps/lwc-recipes-oss/issues",
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.1",
"helmet": "^4.4.1"
},
"description": "Lightning Web Components Recipes Open Source",
"devDependencies": {
"@sa11y/jest": "0.3.0",
"@salesforce/wire-service-jest-util": "^2.4.2",
"chart.js": "^2.9.4",
"d3": "^6.5.0",
"husky": "^5.1.2",
"jest-canvas-mock": "^2.3.1",
"lwc-recipes-oss-ui-components": "^0.3.2",
"lwc-services": "^3.0.4",
"moment": "^2.29.1",
"prettier": "^2.2.1"
},
"engines": {
"node": ">=10.0.0"
},
"homepage": "https://github.com/trailheadapps/lwc-recipes-oss",
"keywords": [
"lwc"
],
"license": "CC0-1.0",
"repository": "trailheadapps/lwc-recipes-oss",
"scripts": {
"build": "lwc-services build --mode production",
"build:development": "lwc-services build",
"lint": "eslint ./src/**/*.js",
"prettier": "prettier --write \"**/*.{css,html,js,json,md,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{css,html,js,json,md,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": "lwc-services watch",
"watch:production": "lwc-services watch --mode=production",
"postinstall": "husky install",
"precommit": "yarn prettier && yarn lint && yarn test:unit"
}
}