Start tracking package*.json

This commit is contained in:
n loewen 2023-08-01 15:47:37 +01:00
parent a46641e172
commit b1ad0bd6e3
2 changed files with 27 additions and 0 deletions

17
package-lock.json generated Normal file
View File

@ -0,0 +1,17 @@
{
"name": "sketches",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"dependencies": {
"papaparse": "^5.4.1"
}
},
"node_modules/papaparse": {
"version": "5.4.1",
"resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.4.1.tgz",
"integrity": "sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw=="
}
}
}

10
package.json Normal file
View File

@ -0,0 +1,10 @@
{
"name": "paper-computer",
"dependencies": {
"papaparse": "^5.4.1"
},
"scripts": {
"assemble-and-run": "node assemble-and-run.js",
"assemble": "node assemble.js"
}
}