forked from trailheadapps/ebikes-manufacturing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.1 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
{
"name": "lwc-oss-manufacturing",
"type": "module",
"version": "1.0.0",
"private": true,
"author": "pozil",
"bugs": "https://github.com/pozil/lwc-oss-manufacturing/issues",
"dependencies": {
"@babel/core": "^7.20.12",
"bulma": "0.7.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsforce": "^1.11.1",
"lwc": "^2.35.1",
"lwr": "^0.8.14",
"salesforce-pubsub-api-client": "^2.1.3",
"ws": "^8.11.0"
},
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^1.6.2",
"@lwc/jest-preset": "^11.8.0",
"@salesforce/eslint-config-lwc": "^3.4.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8"
},
"engines": {
"node": "^18"
},
"homepage": "https://github.com/pozil/lwc-oss-manufacturing",
"license": "CC0-1.0",
"lint-staged": {
"**/*.{css,html,js,json,md,yaml,yml}": [
"prettier --write"
],
"**/src/**/*.js": [
"eslint"
]
},
"repository": "pozil/lwc-oss-manufacturing",
"scripts": {
"start": "MODE=prod node src/server/server.js",
"dev": "node src/server/server.js",
"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}'",
"test:unit": "jest",
"test:unit:coverage": "jest --coverage",
"test:unit:debug": "jest --debug",
"test:unit:watch": "jest --watch",
"preinstall": "rm -fr src/client/assets/dependencies",
"postinstall": "husky install && mkdir -p src/client/assets/dependencies && cp node_modules/bulma/css/bulma.min.css src/client/assets/dependencies/.",
"precommit": "lint-staged"
},
"volta": {
"node": "18.12.1",
"npm": "9.2.0"
}
}