-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 975 Bytes
/
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
{
"name": "hello-typescript",
"version": "1.0.0",
"description": "",
"private": true,
"main": "dist/index",
"types": "dist/index",
"workspaces": ["packages/*"],
"scripts": {
"bootstrap": "npx lerna bootstrap",
"clean": "rimraf dist && npx lerna run clean",
"build": "yarn run build:packages && yarn run build:main",
"build:main": "tsc -p tsconfig.build.json",
"build:packages": "npx lerna run build",
"dev": "concurrently --kill-others 'tsc -p tsconfig.build.json --watch' 'npx lerna run --parallel build -- --watch'",
"start": "node dist/index",
"test": "jest",
"do": "npx lerna exec --"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3",
"concurrently": "^5.1.0"
},
"author": "Starck Lin <[email protected]> (http://beyond.tw)",
"license": "MIT"
}