family-friendly/package.json

39 lines
1005 B
JSON
Raw Normal View History

2024-01-05 08:40:15 -06:00
{
"name": "family-friendly",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
2024-01-05 12:40:47 -06:00
"engines": {
"node": "18.x"
},
2024-01-05 08:40:15 -06:00
"scripts": {
2024-01-05 12:40:47 -06:00
"build": "babel src -d dist --extensions \".ts,.tsx\"",
2024-01-05 08:40:15 -06:00
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rm -rf dist",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"format": "prettier --write \"**/*.{js,ts,json}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
2024-01-05 12:40:47 -06:00
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
2024-01-05 13:29:46 -06:00
"@types/jest": "^29.5.11",
2024-01-05 08:40:15 -06:00
"@types/node": "^20.10.6",
"eslint": "^8.56.0",
"jest": "^29.7.0",
2024-01-05 12:40:47 -06:00
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
2024-01-05 08:40:15 -06:00
}
}