Skip to content

Commit de09687

Browse files
committed
move typescript to dev dependencies
1 parent 6133836 commit de09687

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

package-lock.json

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@
99
"build": "npm run build-ts",
1010
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
1111
"watch-node": "nodemon -r dotenv/config build/server.js",
12-
"build-ts": "npm run tsc",
13-
"watch-ts": "npm run tsc -w",
12+
"build-ts": "tsc",
13+
"watch-ts": "tsc -w",
1414
"tslint": "tslint -c tslint.json -p tsconfig.json",
15-
"test": "jest --forceExit --detectOpenHandles --coverage --verbose",
16-
"tsc": "./node_modules/typescript/bin/tsc"
15+
"test": "jest --forceExit --detectOpenHandles --coverage --verbose"
1716
},
1817
"repository": {
1918
"type": "git",
@@ -32,7 +31,6 @@
3231
"jsonwebtoken": "^8.5.1",
3332
"lodash": "^4.17.15",
3433
"mongoose": "^5.9.5",
35-
"typescript": "^3.8.3",
3634
"winston": "^3.2.1",
3735
"winston-daily-rotate-file": "^4.4.2"
3836
},
@@ -58,6 +56,7 @@
5856
"supertest": "^4.0.2",
5957
"ts-jest": "^25.2.1",
6058
"ts-node": "^8.8.1",
61-
"tslint": "^6.1.0"
59+
"tslint": "^6.1.0",
60+
"typescript": "^3.8.3"
6261
}
6362
}

0 commit comments

Comments
 (0)