forked from gatsbyjs/gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 826 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
{
"dependencies": {
"babel-runtime": "^6.26.0",
"chokidar": "^1.7.0",
"configstore": "^3.1.0",
"fs-extra": "^4.0.1",
"is-absolute": "^0.2.6",
"lodash": "^4.17.4",
"yargs": "^8.0.2"
},
"name": "gatsby-dev-cli",
"version": "1.2.10",
"description": "CLI helpers for contributors working on Gatsby",
"main": "index.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"cross-env": "^5.0.5"
},
"bin": {
"gatsby-dev": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src --out-dir dist",
"watch": "babel -w src --out-dir dist",
"prepublish": "cross-env NODE_ENV=production npm run build"
},
"keywords": [
"gatsby"
],
"author": "Kyle Mathews <[email protected]>",
"license": "MIT"
}