forked from lasmil/song-viewer-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "song-viewer-service",
"description": "Song Viewer Service",
"version": "1.0.0",
"main": "./index.js",
"type": "module",
"scripts": {
"start": "node ./index.js",
"lint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"@fastify/cors": "^8.0.0",
"@fastify/multipart": "^7.4.0",
"@fastify/static": "^6.6.1",
"aubiojs": "^0.2.1",
"dotenv": "^16.0.3",
"env-schema": "^5.2.0",
"fastify": "^4.11.0",
"fastify-cli": "^5.7.1",
"fastify-plugin": "^4.5.0",
"fetch": "^1.1.0",
"node-fetch": "^3.3.0",
"nodeplotlib": "^1.1.2",
"web-audio-api": "^0.2.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"babel-eslint": "^10.1.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"newman": "^5.2.3",
"newman-reporter-htmlextra": "^1.20.4",
"prettier": "^2.8.3",
"tap": "^16.3.4",
"wait-on": "^7.0.1"
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix"
}
}