-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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
{
"type": "module",
"name": "lastfm-api",
"description": "A simple API that gets information from Last.fm API.",
"version": "1.0.0",
"main": "app.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js --exec babel-node --presets @babel/preset-env",
"test": "NODE_ENV=test jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcoriosp/lastfm-api.git"
},
"author": "Zerovarius",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcoriosp/lastfm-api/issues"
},
"homepage": "https://github.com/marcoriosp/lastfm-api#readme",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.14.5",
"@pact-foundation/pact": "^9.16.0",
"babel-jest": "^27.0.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"dotenv": "^10.0.0",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"nock": "^13.1.1",
"nodemon": "^2.0.12",
"supertest": "^6.1.3"
},
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"http-status": "^1.5.0"
}
}