-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 886 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 886 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@digitalnative/lumen",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "nx run @digitalnative/lumen:build",
"clean": "lerna clean",
"publish": "yarn run bootstrap && lerna publish",
"audit": "lerna run audit",
"test": "lerna run test --stream --concurrency=1 -- --colors"
},
"devDependencies": {
"@nrwl/nx-cloud": "latest",
"coveralls": "^3.0.2",
"eslint": "^5.7.0",
"husky": "^1.2.0",
"lint-staged": "^7.3.0",
"nx": "14.2.4",
"nyc": "^13.0.1",
"prettier": "1.14.3",
"prs-merged-since": "^1.1.0",
"yarn-audit-fix": "^9.3.1"
},
"workspaces": [
"packages/*"
],
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}