-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
91 lines (91 loc) · 2.53 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "leafplayer",
"version": "1.3.0",
"description": "",
"author": "Paul Schwörer <[email protected]>",
"license": "MIT",
"files": [
"./build/**/*"
],
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon",
"build": "npm-run-all clean build:*",
"build:web": "npm --prefix web run build",
"build:compile": "tsc --project tsconfig.prod.json",
"build:lib": "babel lib --extensions '.ts' --out-dir dist/lib",
"build:entrypoint": "babel main.ts --out-file dist/main.js",
"build:package-json": "node build/generateReleasePackageJson.js",
"clean": "rimraf dist/*",
"lint": "eslint --ext .ts lib/ test/",
"lint:fix": "npm run lint -- --fix",
"test": "ava",
"test:watch": "ava --watch",
"make-migration": "knex migrate:make -x ts --migrations-directory=lib/database/migrations",
"release": "npx standard-version"
},
"engines": {
"node": ">14.0.0 <17"
},
"ava": {
"files": [
"lib/**/*.test.ts",
"test/**/*.test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {
"awilix": "^6.1.0",
"bcrypt": "^5.0.1",
"better-sqlite3": "^7.5.0",
"chalk": "^4.1.2",
"commander": "^9.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"fastify": "^3.29.4",
"fastify-auth": "^1.1.0",
"fastify-plugin": "^3.0.1",
"fastify-static": "^4.5.0",
"jsonwebtoken": "^8.5.1",
"knex": "^1.0.3",
"md5-file": "^5.0.0",
"music-metadata": "^7.14.0",
"sharp": "^0.32.6",
"ua-parser-js": "^1.0.2",
"uid-safe": "^2.1.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^16.11.7",
"@types/sharp": "^0.29.5",
"@types/ua-parser-js": "^0.7.36",
"@types/uid-safe": "^2.1.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"ava": "^4.0.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"testdouble": "^3.16.4",
"ts-node": "^10.6.0",
"tsconfig-paths": "^3.13.0",
"typescript": "^4.6.2"
}
}