-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.81 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
{
"name": "content-manager",
"version": "3.3.3",
"description": "The musicorum content manager, desired to manage and save cache of data",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "babel-node --extensions \".ts\" -r dotenv/config src/index.ts",
"clean": "rm -rf ./dist && mkdir dist",
"build": "npm run clean && babel src -d dist --extensions \".ts\""
},
"author": "Matheus Dias <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"@prisma/client": "^4.0.0",
"colorette": "^2.0.16",
"cors": "^2.8.5",
"express": "^4.17.1",
"lastfm-typed": "^2.0.1",
"mongodb": "^3.6.9",
"nanoid": "^3.3.4",
"node-fetch": "^2.6.1",
"node-spotify-api": "^1.1.1",
"node-vibrant": "^3.2.1-alpha.1",
"prom-client": "^14.0.1",
"signale": "^1.4.0",
"tedis": "^0.1.12"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^15.12.4",
"@types/node-fetch": "^2.5.12",
"@types/signale": "^1.4.2",
"@types/winston": "^2.4.4",
"dotenv": "^8.6.0",
"eslint": "^7.29.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-n": "^15.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"nodemon": "^2.0.7",
"prisma": "^4.0.0",
"typescript": "^4.3.4"
}
}