forked from stereobooster/typescript-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.26 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
{
"name": "typescript-monorepo",
"workspaces": [
"packages/*"
],
"description": "Typescript monorepo",
"repository": "https://github.com/stereobooster/typescript-monorepo",
"license": "MIT",
"private": true,
"scripts": {
"prestart": "yarn build",
"start": "run-p start:*",
"start:stories": "lerna run start --stream --scope=@stereobooster/stories",
"start:watch": "tsc --build --watch",
"pretest": "yarn build",
"test": "jest --config=jest.json",
"test:stories": "lerna run test --stream --scope=@stereobooster/stories",
"build": "tsc --build",
"build:stories": "lerna run build --stream --scope=@stereobooster/stories",
"clean": "rimraf packages/*/{tsconfig.tsbuildinfo,lib,dist}"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"@types/react-test-renderer": "^16.8.1",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"lerna": "^3.14.1",
"npm-run-all": "^4.1.5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
}
}