-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "authentication",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "node scripts/postinstall",
"build": "node scripts/build-all --only-changed",
"build:all": "node scripts/build-all",
"prerelease": "yarn build:all",
"prettier": "prettier --write \"packages/*/src/**/*.{ts,tsx}\"",
"test": "jest",
"posttest": "wsrun --parallel --exclude-missing test",
"watch:jest": "jest --watch",
"clean": "rimraf packages/*/lib && rimraf packages/*/.last_build && rimraf packages/*/.cache && rimraf packages/*/build && rimraf packages/*/node_modules && rimraf node_modules"
},
"jest": {
"transformIgnorePatterns": [
"<rootDir>.*(node_modules)(?!.*authentication.*).*$"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "/__tests__/.+\\.test\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"dependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@types/jest": "^26.0.5",
"@types/node": "^10.0.0",
"cross-spawn": "^7.0.3",
"jest": "^26.1.0",
"lsr": "^2.0.0",
"mkdirp": "^1.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7",
"wsrun": "^5.2.1"
},
"resolutions": {
"@types/node": "^10.0.0"
}
}