-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.88 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
{
"name": "flowdoc-web-lwc",
"description": "My amazing LWC app",
"version": "0.0.1",
"author": "shunkosa",
"bugs": "https://github.com/shunkosa/flowdoc-web-lwc/issues",
"dependencies": {
"compression": "^1.7.4",
"docx": "^5.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"helmet": "^3.21.3",
"jsforce": "^1.9.3",
"sfdx-flowdoc-plugin": "^0.5.1"
},
"devDependencies": {
"@salesforce-ux/design-system": "^2.11.6",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"lwc-services": "^2.0.1",
"prettier": "^2.0.2"
},
"engines": {
"node": ">=10.13.0",
"npm": ">=6.4.1",
"yarn": ">=1.9.4"
},
"homepage": "https://github.com/shunkosa/flowdoc-web-lwc",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"lwc"
],
"license": "MIT",
"lint-staged": {
"**/*.{css,html,js,json,md,ts,yaml,yml}": [
"prettier --write"
],
"./src/modules/**/*.js": [
"eslint"
]
},
"repository": "shunkosa/flowdoc-web-lwc",
"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": "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"
}
}