forked from LiteFarmOrg/LiteFarm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 736 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 736 Bytes
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
{
"devDependencies": {
"cypress": "^9.5.3",
"husky": "^7.0.4",
"lerna": "^4.0.0"
},
"scripts": {
"test": "lerna run test",
"lint": "lerna run lint",
"start": "lerna run start",
"bootstrap": "lerna bootstrap",
"prepare": "husky install",
"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"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](node_modules|packages/webapp/scripts)[/\\\\]"
],
"verbose": true,
"testURL": "http://localhost/",
"testEnvironment": "node"
}
}