-
Notifications
You must be signed in to change notification settings - Fork 16
/
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": "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.24.7",
"bulma": "0.7.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsforce": "^1.11.1",
"lwc": "^6.7.2",
"lwr": "^0.12.4",
"salesforce-pubsub-api-client": "^4.1.1",
"ws": "^8.17.1"
},
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^1.8.2",
"@lwc/jest-preset": "^16.1.0",
"@salesforce/eslint-config-lwc": "^3.6.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"shx": "^0.3.4"
},
"engines": {
"node": "^20"
},
"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": "cross-env 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": "shx rm -fr src/client/assets/dependencies",
"postinstall": "shx mkdir -p src/client/assets/dependencies && shx cp node_modules/bulma/css/bulma.min.css src/client/assets/dependencies/.",
"prepare": "husky || true",
"precommit": "lint-staged"
},
"volta": {
"node": "20.15.0"
}
}