-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "previewify",
"version": "1.0.0",
"description": "A web application to search, view and preview artist's top songs, albums, and related artists.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinkwan/previewify.git"
},
"author": "Martin Kwan",
"license": "ISC",
"bugs": {
"url": "https://github.com/martinkwan/previewify/issues"
},
"homepage": "https://github.com/martinkwan/previewify#readme",
"devDependencies": {
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"grunt": "^1.0.1",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-cssmin": "latest",
"grunt-contrib-uglify": "latest",
"grunt-contrib-watch": "latest",
"grunt-postcss": "latest",
"autoprefixer": "latest"
},
"dependencies": {
"express": "^4.14.0",
"path": "^0.12.7",
"request": "^2.76.0"
}
}