forked from CasperLabs/clarity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.33 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
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"dev": "concurrently --kill-others --success first \"npm start --prefix ./packages/server\" \"npm run start --prefix ./packages/ui\"",
"test": "npm run test:sdk",
"posttest": "npm run format",
"test:sdk": "npm test --prefix ./packages/sdk",
"build": "lerna run build",
"publish": "lerna publish",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx,scss,md}\"",
"cypress:dev": "node_modules/.bin/cypress open --env clarity=http://localhost:8000",
"cypress:chrome": "node_modules/.bin/cypress run -b chrome --env clarity=http://localhost:8000",
"NOT_READY_YET": "yarn dev & wait-on http://localhost:8000 && node_modules/.bin/cypress run -b chrome --env clarity=http://localhost:8000",
"cypress:ci": "node_modules/.bin/cypress run -b chrome --env clarity= < TEST CLARITY >"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"concurrently": "^3.6.0",
"cypress": "6.1.0",
"cypress-browser-extension-plugin": "^0.1.0",
"husky": "^2.7.0",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"wait-on": "^5.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,scss,md}": "prettier --write"
}
}