Browse Source

Add initial dependencies and gitignore

master
David Ludwig 3 years ago
parent
commit
0a6fd1fc46
3 changed files with 5288 additions and 0 deletions
  1. +66
    -0
      .gitignore
  2. +18
    -0
      package.json
  3. +5204
    -0
      yarn.lock

+ 66
- 0
.gitignore View File

@ -0,0 +1,66 @@
# Docker secrets
.secrets/
# Volumes
.volumes/
# VS Code
.vscode/
# Node Modules
node_modules/
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
pids
*.pid
*.seed
*.pid.lock
.data/
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# TypeScript cache
*.tsbuildinfo
# Optional REPL history
.node_repl_history
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
.env.test
# Environment docker-compose configuration
docker-compose.env.yml
# Built files
dist
build
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

+ 18
- 0
package.json View File

@ -0,0 +1,18 @@
{
"name": "autoplex",
"private": true,
"version": "0.2.0",
"repository": "ssh://git@git.dlii.tech:222/Autoplex/autoplex.git",
"author": "David Ludwig <davidludwigii@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"chai": "^4.3.6",
"lerna": "^4.0.0",
"mocha": "^9.2.1",
"nodemon": "^2.0.15",
"typescript": "^4.6.2"
}
}

+ 5204
- 0
yarn.lock
File diff suppressed because it is too large
View File


Loading…
Cancel
Save