Mari's guided journal software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mari-guided-journal/package.json

31 lines
879 B

4 years ago
{
"name": "typescript-nodejs-template",
"version": "1.0.0",
"description": "A simple template for typescript Node.js project",
4 years ago
"main": "index.js",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts",
4 years ago
"serve": "node dist/index.js",
"watch-node": "nodemon dist/index.js",
"watch": "tsc && concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
4 years ago
"build-ts": "tsc",
"watch-ts": "tsc -w"
4 years ago
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"typescript": "^4.0.3"
4 years ago
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@types/concurrently": "^5.2.1",
4 years ago
"@types/node-fetch": "^2.5.4",
"concurrently": "^5.0.0",
"nodemon": "^2.0.4"
4 years ago
}
}