add npm deps as package.json

This commit is contained in:
brooke 2024-08-09 01:39:25 -04:00
parent 3bb0272dc3
commit 8ef30f47a3
2 changed files with 32 additions and 0 deletions

27
package-lock.json generated Normal file
View file

@ -0,0 +1,27 @@
{
"name": "myco.systems",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"prettier": "^3.3.3"
}
},
"node_modules/prettier": {
"version": "3.3.3",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz",
"integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==",
"license": "MIT",
"bin": {
"prettier": "bin/prettier.cjs"
},
"engines": {
"node": ">=14"
},
"funding": {
"url": "https://github.com/prettier/prettier?sponsor=1"
}
}
}
}

5
package.json Normal file
View file

@ -0,0 +1,5 @@
{
"dependencies": {
"prettier": "^3.3.3"
}
}