-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
40
41
42
43
44
45
46
47
48
49
50
{
"engines": {
"yarn": ">=1.3.2"
},
"name": "nameless-router-monorepo",
"version": "0.0.1",
"description": "Monorepo root",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"internal/*"
],
"devDependencies": {
"@types/jest": "^22.0.1",
"jest": "^22.0.6",
"lerna": "^2.7.0",
"prettier": "^1.10.2",
"ts-jest": "^22.0.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.6.0",
"typescript": "^2.6.2"
},
"scripts": {
"test": "jest",
"prettier-all": "prettier --write \"packages/**/*.{ts,tsx}\"",
"yarn-tools-fix-duplicates": "yarn-tools fix-duplicates yarn.lock > yarn.lock.fixed && mv yarn.lock.fixed yarn.lock;"
},
"jest": {
"collectCoverage": false,
"mapCoverage": false,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"projects": [
"<rootDir>/packages/not-a-router"
]
}
}