-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 962 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
35
36
{
"name": "recipes",
"version": "1.0.0",
"description": "Recipe book",
"directories": {
"doc": "docs"
},
"type": "module",
"scripts": {
"now-build": "babel src --out-dir babel-out && node ./babel-out/scripts/build.js --now",
"build": "node --experimental-modules ./src/scripts/build.js",
"start": "node --experimental-modules ./src/scripts/dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/znewton/recipes.git"
},
"author": "Zach Newton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/znewton/recipes/issues"
},
"homepage": "https://github.com/znewton/recipes#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"eslint": "^6.1.0",
"open": "^6.2.0",
"portfinder": "^1.0.20",
"serve": "^11.0.0"
},
"engines": {
"node": "10.x"
}
}