-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.94 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
{
"private": true,
"name": "@my/nestjs-example",
"main": "start.js",
"license": "UNLICENSED",
"workspaces": [
"packages/@my/*"
],
"scripts": {
"start": "node start-dev",
"start:watch": "nodemon -e ts,js,json -d 1 ./start-dev",
"start:watch:webpack": "nodemon --watch dist --watch config ./dist/main",
"build:now": "tsc",
"build": "yarn run clean && echo \"Start Compiling\" && yarn run build:now",
"build:watch": "tsc -w",
"dev": "concurrently -c \"yellow,green\" -n \"tsc,app\" \"yarn run webpack:watch\" \"yarn run start:watch:webpack\"",
"clean": "lerna run clean",
"lint": "tslint --type-check -c tslint.json -p tsconfig.json",
"lint:fix": "tslint -c tslint-fast.json -p tsconfig.json --fix",
"code-format": "tsfmt -r",
"publish-all": "lerna publish --skip-git",
"sync-versions": "lerna publish --skip-git --skip-npm",
"delete-modules": "lerna clean --yes && touch node_modules && rimraf node_modules packages/*/node_modules packages/@*/*/node_modules",
"webpack": "webpack",
"webpack:watch": "webpack --watch"
},
"dependencies": {
"@my/main-api-server": ">0.0.1",
"newrelic": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^20.0.7",
"@types/node": "^8.0.28",
"cache-loader": "^1.0.3",
"concurrently": "^3.5.0",
"cross-env": "^5.0.5",
"ejs": "^2.5.7",
"fork-ts-checker-webpack-plugin": "^0.2.8",
"globby": "^6.1.0",
"happypack": "^4.0.0-beta.5",
"http-server": "^0.10.0",
"jest": "^20.0.4",
"json2yaml": "^1.1.0",
"lerna": "^2.4.0",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1",
"shelljs": "^0.7.8",
"swagger-ui-dist": "^3.4.0",
"thread-loader": "^1.1.1",
"ts-loader": "^2.3.6",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2",
"typescript-formatter": "7.0.0",
"webpack": "^3.5.6",
"webpack-node-externals": "^1.6.0",
"webpack-source-map-support": "^2.0.1"
}
}