forked from LiteFarmOrg/LiteFarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 809 Bytes
/
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
{
"devDependencies": {
"husky": "^7.0.4",
"lerna": "^5.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8"
},
"scripts": {
"test": "lerna run test",
"lint": "lerna run lint",
"start": "lerna run start",
"bootstrap": "lerna bootstrap",
"prepare": "husky install && chmod u+x .husky/*",
"ngrok": "ngrok start --config=./ngrok/ngrok.yml --all",
"ngrok:setup": "node ./ngrok/ngrok-setup.js",
"ngrok:api": "ngrok start --config=./ngrok/ngrok.yml api",
"ngrok:webapp": "ngrok start --config=./ngrok/ngrok.yml webapp"
},
"type": "module",
"jest": {
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](node_modules|packages/webapp/scripts)[/\\\\]"
],
"verbose": true,
"testURL": "http://localhost/",
"testEnvironment": "node"
}
}