File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1212 "start" : " echo '🟢 Starting app...' && node dist/index.js" ,
1313 "watch" : " echo '👀 Watching for changes...' && nodemon --exec npm run dev" ,
1414 "test" : " echo '✅ Running tests...' && NODE_OPTIONS=--experimental-vm-modules jest" ,
15- "test:watch" : " echo '🔍✅ Watching tests...' && jest --watch" ,
16- "test:coverage" : " echo '📊 Generating test coverage...' && jest --coverage" ,
17- "test:verbose" : " echo '🗣️ Running tests in verbose mode...' && jest --verbose" ,
18- "test:debug" : " echo '🐛 Debugging tests...' && node --inspect-brk ./node_modules/.bin/jest --runInBand" ,
19- "test:debug:watch" : " echo '🐛👀 Watching and debugging tests...' && node --inspect-brk ./node_modules/.bin/jest --watchAll" ,
15+ "test:watch" : " echo '🔍✅ Watching tests...' && NODE_OPTIONS=--experimental-vm-modules jest --watch" ,
16+ "test:coverage" : " echo '📊 Generating test coverage...' && NODE_OPTIONS=--experimental-vm-modules jest --coverage" ,
17+ "test:verbose" : " echo '🗣️ Running tests in verbose mode...' && NODE_OPTIONS=--experimental-vm-modules jest --verbose" ,
18+ "test:debug" : " echo '🐛 Debugging tests...' && NODE_OPTIONS=--experimental-vm-modules node --inspect-brk ./node_modules/.bin/jest --runInBand" ,
19+ "test:debug:watch" : " echo '🐛👀 Watching and debugging tests...' && NODE_OPTIONS=--experimental-vm-modules node --inspect-brk ./node_modules/.bin/jest --watchAll" ,
2020 "clean" : " echo '🧽 Cleaning up...' && rm -rf ./node_modules ./dist && rm package-lock.json"
2121 },
2222 "keywords" : [],
You can’t perform that action at this time.
0 commit comments