diff options
| author | Pitu <[email protected]> | 2021-06-15 00:12:56 +0900 |
|---|---|---|
| committer | Pitu <[email protected]> | 2021-06-15 00:12:56 +0900 |
| commit | f45cb197e445ecdb549194eb27d694dff546f55e (patch) | |
| tree | 9e9f282929910acb30fc1cb7ccc9271e6c330681 /package.json | |
| parent | chore: update process.env usage (diff) | |
| download | host.fuwn.me-f45cb197e445ecdb549194eb27d694dff546f55e.tar.xz host.fuwn.me-f45cb197e445ecdb549194eb27d694dff546f55e.zip | |
update package.json, pin volta, update deps
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/package.json b/package.json index 5792ddd..444a23a 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "url": "https://github.com/Pitu" }, "scripts": { - "setup": "node src/setup.js && npm run migrate && npm run seed && npm run build", + "setup": "node src/setup.js && npm run migrate && npm run seed", "start": "nuxt build && npm run migrate && cross-env NODE_ENV=production node src/api/structures/Server", "dev": "nodemon src/api/structures/Server", "migrate": "knex migrate:latest", @@ -20,7 +20,8 @@ "test:vue": "jest --testPathPattern=src/site", "test:api": "jest --testPathPattern=src/tests/api", "test:e2e": "jest --testPathPattern=src/tests/e2e", - "tests": "npm run test:api && npm run test:vue && npm run test:e2e" + "tests": "npm run test:api && npm run test:vue && npm run test:e2e", + "sqlite": "sqlite_web -p 5001 database/database.sqlite" }, "repository": { "type": "git", @@ -36,7 +37,7 @@ "@mdi/font": "^5.8.55", "@nuxtjs/axios": "^5.12.5", "adm-zip": "^0.4.13", - "bcrypt": "^5.0.0", + "bcrypt": "^5.0.1", "blake3": "^2.1.4", "body-parser": "^1.18.3", "buefy": "^0.9.4", @@ -132,7 +133,9 @@ } }, "nodemonConfig": { - "watch": ["src/api/*"], + "watch": [ + "src/api/*" + ], "delay": 2500 }, "keywords": [ @@ -145,5 +148,8 @@ "ssr", "file uploader", "images" - ] + ], + "volta": { + "node": "14.17.0" + } } |