lincd-cli 0.2.46 → 0.2.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -19,6 +19,8 @@
|
|
|
19
19
|
"start": "npm run server:dev",
|
|
20
20
|
"build": "env-cmd -e _main,production node scripts/build.js",
|
|
21
21
|
"postinstall": "husky install && echo 'Please run this command manually: node scripts/prepare.js'",
|
|
22
|
+
"prepack": "pinst --disable",
|
|
23
|
+
"postpack": "pinst --enable",
|
|
22
24
|
"server:dev": "env-cmd -e _main,development nodemon --quiet --watch ./src/index.tsx ./scripts/start-server.js",
|
|
23
25
|
"server:prod": "env-cmd -e _main,production node ./scripts/start-server.js",
|
|
24
26
|
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
|
|
@@ -29,8 +31,7 @@
|
|
|
29
31
|
},
|
|
30
32
|
"lint-staged": {
|
|
31
33
|
"*.{js,ts,tsx}": [
|
|
32
|
-
"prettier --write"
|
|
33
|
-
"eslint --fix"
|
|
34
|
+
"prettier --write"
|
|
34
35
|
],
|
|
35
36
|
"*.{scss,css}": [
|
|
36
37
|
"prettier --write"
|
|
@@ -84,6 +85,7 @@
|
|
|
84
85
|
"husky": "^8.0.0",
|
|
85
86
|
"lincd-cli": "^0.2",
|
|
86
87
|
"nodemon": "^2.0.22",
|
|
88
|
+
"pinst": "^3.0.0",
|
|
87
89
|
"pm2": "^5.3.0",
|
|
88
90
|
"which": "^3.0.1"
|
|
89
91
|
}
|