-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "arc",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "tsc -w",
"native:start": "cd packages/native && node link-workspaces.js && node node_modules/react-native/local-cli/cli.js start --config ../../../../packages/native/rn-cli-config.js --reset-cache",
"native:ios": "cd packages/native && react-native run-ios",
"native:android": "cd packages/native && react-native run-android",
"api:start": "cd packages/api && gulp",
"web:start": "cd packages/web && NODE_ENV=development && webpack-dev-server",
"packages:clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"test:watch": "jest --watchAll --notify",
"test:coverage": "npm run test -- --coverage=true"
},
"author": "",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@types/jest": "^21.1.8",
"jest": "^22.0.0",
"jest-junit-reporter": "^1.1.0",
"ts-jest": "^21.2.4",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
},
"jest": {
"rootDir": ".",
"modulePaths": [
"<rootDir>"
],
"moduleNameMapper": {
"~(.*)$": "<rootDir>/$1"
},
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"node"
],
"transform": {
".(ts|tsx)": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/__tests__/*.(ts|tsx)"
],
"testResultsProcessor": "./node_modules/jest-junit-reporter",
"collectCoverageFrom": [
"<rootDir>/**/*.{ts,tsx,js}"
],
"coverageDirectory": "./coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"cobertura"
]
}
}