forked from BolajiAyodeji/image-search-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 937 Bytes
/
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
{
"name": "image-search-app",
"version": "1.0.0",
"description": "A simple image search app",
"main": "src/app.js",
"scripts": {
"build": "watchify src/app.js -t babelify --outfile public/bundle.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BolajiAyodeji/image-search-app.git"
},
"keywords": [],
"author": "Bolaji Ayodeji",
"license": "MIT",
"bugs": {
"url": "https://github.com/BolajiAyodeji/image-search-app/issues"
},
"homepage": "https://github.com/BolajiAyodeji/image-search-app#readme",
"dependencies": {
"@babel/polyfill": "^7.4.3",
"babel-plugin-dotenv": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-core": "^6.26.3",
"babelify": "^10.0.0",
"dotenv": "^7.0.0",
"eslint": "^5.16.0",
"watchify": "^3.11.1"
}
}