-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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": "movie-picker",
"description": "Movie Picker",
"version": "1.0.0",
"author": "Travis Clarke <[email protected]>",
"dependencies": {
"gatsby": "^1.9.277",
"gatsby-link": "^1.6.46",
"gatsby-plugin-react-helmet": "^2.0.11",
"react-helmet": "^5.2.0",
"react-loading": "^2.0.3",
"whatwg-fetch": "^2.0.4"
},
"keywords": [
"netflix movie picker",
"netflix",
"movie",
"picker",
"travismclarke",
"gatsbyjs",
"roulette",
"netflix roulette"
],
"license": "Apache-2.0",
"main": "webtask/movie-picker/movie-picker.js",
"scripts": {
"build": "gatsby build",
"css": "node-sass src/css/style.scss src/css/style.css --output-style compressed",
"develop": "gatsby develop",
"format": "prettier --write 'src/**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "yarn css && yarn build",
"deploy": "surge public movie.travismclarke.com"
},
"devDependencies": {
"node-sass": "^4.9.3",
"prettier": "^1.14.2"
}
}