-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.07 KB
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
{
"name": "songkick-api-proxy",
"version": "1.0.0",
"description": "An Express based API proxy to get around the Songkick API's lack of CORS support",
"main": "index.js",
"scripts": {
"dev": "yarn build && yarn start",
"build": "babel src --source-maps --out-dir=dist",
"start": "npm run build && node ./dist/index.js",
"test": "jest --no-cache --config jest.config.json",
"lint": "eslint **/*.js --quiet"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.17.2",
"color-logger": "^0.0.6",
"es6-promise": "^4.1.1",
"express": "^4.15.3",
"isomorphic-fetch": "^2.2.1",
"jdu": "^1.0.0"
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.8.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.1.0",
"jest": "^20.0.4",
"jest-fetch-mock": "^1.2.1"
}
}