-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.08 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.08 KB
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
{
"name": "root",
"private": true,
"scripts": {
"tsc": "lerna run tsc --stream",
"tsc:watch": "lerna run tsc:watch --parallel --stream",
"lint": "lerna run lint --parallel --stream",
"lint:fix": "lerna run lint:fix --parallel --stream",
"build": "lerna run build --stream",
"website:build": "./scripts/build_docs.sh",
"chat:build": "./scripts/build_chat.sh",
"todomvc:build": "./scripts/build_todomvc.sh",
"release": "npm run build && lerna publish --force-publish",
"test": "lerna run test -- -- --passWithNoTests",
"test:cov": "lerna run test:cov -- -- --passWithNoTests",
"test:watch": "lerna run test:watch --stream -- -- --passWithNoTests"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"url": "https://github.com/uditalias/injex"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lerna": "^5.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
}
}