jest-hands-on/templates/template/package.json

16 lines
264 B
JSON
Raw Normal View History

2022-02-24 17:06:32 +09:00
{
"name": "template",
"version": "1.0.0",
"private": true,
"main": "main.js",
"type": "module",
"scripts": {
2022-07-22 19:01:44 +09:00
"test": "jest",
"watch": "jest --watchAll"
2022-02-24 17:06:32 +09:00
},
"devDependencies": {
2022-07-20 19:15:18 +09:00
"@babel/preset-env": "^7.18.9",
"jest": "^29.0.0"
2022-02-24 17:06:32 +09:00
}
}