-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "lyrics-search",
"private": true,
"version": "0.0.0",
"description": "A web front end combining apiseeds lyrics, youtube, and spotify's apis",
"main": "",
"scripts": {
"start": "superstatic",
"test": "eslint '**/*.js' && ./node_modules/karma/bin/karma start --single-run",
"format": "prettier-eslint --write {,**/}*.js"
},
"author": "",
"license": "MIT",
"devDependencies": {
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^9.1.0",
"jasmine-core": "latest",
"jest": "^24.8.0",
"karma": "latest",
"karma-chrome-launcher": "latest",
"karma-coverage": "latest",
"karma-firefox-launcher": "latest",
"karma-fixture": "latest",
"karma-html2js-preprocessor": "latest",
"karma-jasmine": "latest",
"karma-jquery": "^0.2.4",
"karma-sinon": "latest",
"prettier-eslint": "^9.0.0",
"prettier-eslint-cli": "^5.0.0",
"sinon": "latest",
"superstatic": "latest"
},
"dependencies": {
"cors": "^2.8.4",
"express": "~4.17.1",
"querystring": "~0.2.0",
"request": "^2.88.0"
}
}