-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "sf-movies",
"version": "1.0.0",
"description": "search for movies filmed in San Francisco and see on a map where exactly they were filmed",
"main": "server.js",
"scripts": {
"start": "node server",
"test": "mocha --compilers js:babel-register -R spec",
"build": "webpack && gulp"
},
"author": "Juan López",
"dependencies": {
"autocomplete-js": "^2.6.3",
"express": "^4.15.3"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean-css": "^3.6.0",
"gulp-concat-css": "^2.3.0",
"gulp-htmlmin": "^3.0.0",
"gulp-remove-logging": "^1.2.0",
"gulp-replace": "^0.6.1",
"gulp-uglify": "^3.0.0",
"jsdom": "^11.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.4.2",
"through2": "^2.0.3",
"uglify-es": "^3.0.24",
"webpack": "^3.3.0"
}
}